I am running glob against a folder holding revisions, I would like it to order them ideally by modify date. If I have to I can work with alphabetically in Descending order.
Do I just go with filename
$files = arsort(glob("*.rev"));
or is there a better way that uses modify date?