[wd_asp elements=’search’ ratio=’100%’ id=1]

Show Glob files in date order

8th April 2019

Php - Dates & Time

php codehaven

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


$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 "


";

}