Skip to content
Advertisement

Tag: sorting

Sort files with filemtime

I have PHP file that generates gallery from a directory of images. I want to sort images by modification date. I’m trying to use filemtime function then sort function using the following code: And the output is like this: It is not sorted by modification date. How can I make my code work? Answer

Sort json array by value using PHP

I am trying to sort the array using usort().But my function does not seem to work. I want to sort it by partners_order of each object i.e, $myJson[0] and then $myJson1 separately The Json array is decoded using $myJson = json_decode($jsonData); PHP function to sort is written below. Due to restrictions in this site, I cant post the array here.

Merge two JSON arrays and then sort them

How would I merge both JSON arrays and then sort the value of ID so that the result displays the highest number to the lowest number? For example, my desired output from the script below would be: 1 – Jimbo 2 – Bob 6 – Luke 12 – Chris 16 – Jonas 36 – Sam Here’s my JSON arrays: Answer

Advertisement