Order this array by date modified?

前端 未结 2 890
南方客
南方客 2020-12-21 12:23

I have a php file that is creating a array of everything in my users directory, the array is then being sent back to a iPhone.

The array that my php is creating is o

2条回答
  •  心在旅途
    2020-12-21 13:13

    Using usort() with a callback which calls filemtime()...

    This is untested, but I believe it will set you on the correct path...

    // First define a comparison function to be used as a callback
    function filetime_callback($a, $b)
    {
      if (filemtime($a) === filemtime($b)) return 0;
      return filemtime($a) < filemtime($b) ? -1 : 1; 
    }
    
    // Then sort with usort()
    usort($files, "filetime_callback");
    

    This should sort them oldest-first. If you want them newest-first, change < to > in the callback return ternary operation.

提交回复
热议问题