I want to get a range of files with PHP glob function, but no older than a month (or other specified date range). My current code: $datetime_min = new DateTime(‘today – 4 weeks’); $product_files = …
Tag: filemtime
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
glob() – sort array of files by last modified datetime stamp
I’m trying to display an array of files in order of date (last modified). I have done this buy looping through the array and sorting it into another array, but is there an easier (more efficient) way …