我在一组静态 HTML 页面上使用 php 列出文件并使用以下脚本链接它们:
<?php
$dir="./content"; // Directory where files are stored
if ($dir_list = opendir($dir)) {
while(($filename = readdir($dir_list)) !== false) {
//this kills the annoying .. and . directory listing
if($filename == ".." || $filename == ".") continue; ?>
<p><a href="<?php echo $filename; ?>"><?php echo $filename; ?></a></p>
<?php
}
closedir($dir_list);
}
?>
我现在想做的是列出大于某个文件大小的文件(即大于 35 字节的文件)并按创建日期(从最新到最旧)对它们进行排序。
您的帮助和专业知识将不胜感激。提前对代码格式表示歉意。