PHP Obtenga el último archivo en el directorio

$files = scandir('data', SCANDIR_SORT_DESCENDING);
$newest_file = $files[0];
Parceltube