ホームページ >バックエンド開発 >PHPチュートリアル >PHPでopendir()を使用してディレクトリリストをアルファベット順に並べ替えるにはどうすればよいですか?
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 中国語 Web サイトの他の関連記事を参照してください。