Probably filemtime(). Put the files into an array and sort by this.
Edit: Just to flesh that out a little:
// for each file, do
$time = filemtime("$dir/$file");
$filearray[$file] = $time;
// then sort it in reverse order by mod time
arsort($filearray);