使用下面的代码,我正在生成位于服务器目录中的 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>
任何帮助,将不胜感激。