0

以下のコードを使用して、サーバーのディレクトリにある 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>

どんな助けでも大歓迎です。

4

2 に答える 2

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++;
}
于 2013-08-06T20:02:31.487 に答える
0

これにより、path/to/files 内のすべてのファイルが配列として取得され、その配列がファイルの mtime で並べ替えられます。

$files = glob('path/to/files/*.*');
usort($files, function($a, $b) {
    return filemtime($a) < filemtime($b);
});
于 2013-08-06T20:03:42.177 に答える