PHP Obtenha o último arquivo no diretório

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