I’m using php’s DirectoryIterator class to list files in a directory. I can’t however figure out an easy way to sort files by date. How is this done with DirectoryIterator
<?php
$dir = new DirectoryIterator('.');
foreach ($dir as $fileinfo) {
echo $fileinfo->getFilename() . '<br>';
}
?>
What if i name my files like whatever_2342345345.ext where the numbers represents time in milliseconds so each file has a unique number. How can we sort by looking at the numbers after underscore
If you need to sort, build an array and sort that.
This will build an array with the modified time as the key and an array of filenames as the value. It then sorts via
ksort(), which will give you the filenames in order of time modified.If you then want to re-flatten the structure to a standard array, you can use…