使用opendir() 以字母順序對目錄清單進行排序
Web 開發中的一個常見任務是顯示來自某個目錄的檔案或目錄的排序清單。給定的目錄。這可以使用 opendir() 函數來實現。然而,有些使用者在按字母順序對文件進行排序時可能會遇到困難。
要按字母順序對目錄列表進行排序,需要在排序之前將文件讀入數組。以下程式碼示範了這種方法:
<code class="php"><?php $dirFiles = array(); // Open the directory if ($handle = opendir('Images')) { // Read each file while (false !== ($file = readdir($handle))) { // Strip file extensions $crap = array(".jpg", ".jpeg", ".JPG", ".JPEG", ".png", ".PNG", ".gif", ".GIF", ".bmp", ".BMP"); $newstring = str_replace($crap, " ", $file); // Ignore folders, index.php, and Thumbnails if ($file != "." && $file != ".." && $file != "index.php" && $file != "Thumbnails") { // Add the file to the array $dirFiles[] = $file; } } // Close the directory closedir($handle); } // Sort the files alphabetically sort($dirFiles); // Display the sorted list of files foreach ($dirFiles as $file) { echo "<li><a href=\"Images/$file\" class=\"thickbox\" rel=\"gallery\" title=\"$newstring\"><img src=\"Images/Thumbnails/$file\" alt=\"$newstring\" width=\"300\" </a></li>\n"; } ?></code>
在此程式碼中,檔案在排序之前被讀入 $dirFiles 陣列。 sort() 函數用於按字母順序對陣列進行排序。然後使用循環顯示排序後的文件列表。
此外,您可以使用 pathinfo() 函數更通用地處理檔案副檔名,從而無需硬編碼副檔名數組。
以上是如何在 PHP 中使用 opendir() 按字母順序對目錄清單進行排序?的詳細內容。更多資訊請關注PHP中文網其他相關文章!