Copy link to clipboard
Copied
I have been racking my brain with this with no obvious solution. For the life of me I cannot sort the following by date. When I run it I get the following output where 2024-02-01 should be before 2024-02-13:
//PATH
Copy link to clipboard
Copied
Does this improve anything:
<?php
$dirPath = 'INuploads';
$files = scandir($dirPath);
function sortFilesFunction($a, $b) {
return strtotime($b) - strtotime($a);
}
sort($files, "sortFilesFunction");
foreach($files as $file) {
if (!in_array($file, array(".", ".."))) {
echo "<p><a href='INuploads/$file' target='new'>$file</a></p>";
}
}
?>