function listdir_by_date($path){ $dir = opendir($path); $list = array(); while($file = readdir($dir)){ if ($file != '.' and $file != '..'){ // add the filename, to be sure not to // overwrite a array key $ctime = filectime($data_path . $file) . ',' . $file; $list[$ctime] = $file; } } closedir($dir); krsort($list); return $list; }