PHP Glob menyortir berdasarkan int unsigned int

$list = glob("*.jpg");
natsort($list);
foreach(array_reverse($list) as $filename) { ...
LemonzDEV