I the folder data i store json files which look like this:
{
"date": "2021-08-05",
"time": "13:00",
"name": "John"
}
To loop through all the json files:
$files = glob('data/*.json'); // all json files in data dir
foreach($files as $file) {
$objs = json_decode(file_get_contents($file)); // all json objects in array
echo $objs->date.'<br />';
}
Output above gives me all dates but in ascending order. How can i output them in descending order? (oldest date first)