以下のコードを使用して、サーバーのディレクトリにある 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>
どんな助けでも大歓迎です。