按日期排序文件列表

时间:2013-08-06 19:49:09

标签: php wordpress

使用下面的代码,我将生成一个位于我服务器上的目录中的pdf列表。我希望按日期排序结果,最近的第一个最旧的最后一个。

这里有效:http://mt-spacehosting.com/fisheries/plans/northeast-multispecies/

<?php 
$sub = ($_GET['dir']); 
$path = 'groundfish-meetings/';
$path = $path . "$sub"; 
$dh = opendir($path); 
$i=1; 

while (($file = readdir($dh)) !==   false) { 
    if($file != "." && $file != "..") { 
        if (substr($file, -4, -3) =="."){
         echo "$i. <option value='" . home_url('/groundfish-meetings/' . $file) .         "'>$file</option>";
         } $i++; 
        } 
     } closedir($dh); 
?>
</select>

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:1)

你可以使用PHP的glob函数和这样的自定义排序函数:

<?php
$sub = ($_GET['dir']); 
$path = 'groundfish-meetings/';
$path = $path . "$sub";
$file_list = glob($path."*.pdf");

function sort_by_mtime($file1,$file2) {
$time1 = filemtime($file1);
$time2 = filemtime($file2);
if ($time1 == $time2) {
    return 0;
}
return ($time1 < $time2) ? 1 : -1;
}
usort($file_list ,"sort_by_mtime");
$i = 1;
foreach($file_list as $file)
{
  echo "$i. <option value='" . home_url('/groundfish-meetings/' . $file) .            
"'>$file</option>";
  $i++;
}

答案 1 :(得分:0)

这会将path / to / files中的所有文件作为数组,然后按文件的mtime对该数组进行排序

$files = glob('path/to/files/*.*');
usort($files, function($a, $b) {
    return filemtime($a) < filemtime($b);
});