我有一個網站,其中包含許多辦公室先例的手冊。當用戶使用HTML上傳腳本時,它會將先例上傳到服務器上的文件夾。我使用以下腳本列出特定文件夾中的所有文件。在PHP中按字母順序排列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>";
?>
我該如何實現一個按字母順序排列列表的系統?
您是否嘗試將文件詳細信息保存到數組中,對其進行排序,然後顯示它? – andrewsi