A very nice and simple way to order your files by date order.
This also includes a way to show all the file types using GLOB_BRACE
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
$directory = "reports/"; $images = glob($directory . "*.{png,jpg,jpeg}", GLOB_BRACE); array_multisort( array_map( 'filemtime', $images ), SORT_NUMERIC, SORT_DESC, $images ); foreach ($images as $file) { echo "<img class='gtmetimg' src='".$file."'><hr>"; } |