$fileList = array(); $files = glob('home/dir/*.txt'); foreach ($files as $file) { $fileList[filemtime($file)] = $file; } ksort($fileList); $fileList ...
確定! 回上一頁