我有一个网站,其中包含许多办公室先例的手册。当用户使用 HTML 上传脚本时,它将先例上传到服务器上的文件夹。我使用以下脚本列出该特定文件夹中的所有文件。
<?php //define the path as relative
$dir = "./OFFICE PRECEDENTS/Business & Corporate Law";
$webpath =""; //using the opendir function
echo "<ol>";
// Open a known directory, and proceed to read its contents
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if (is_dir($dir.'/'.$file)){}
else if ($file == '.'){}
else if ($file == '..'){}
else if ($file == 'index.php'){}
else {
echo "<li><a href='https://manual.malicki-law.ca/$dir/$file'>$file</a></li>\n";
}
}
closedir($dh);
}
echo "</ol>";
?>
如何实现按字母顺序对列表进行排序的系统?