>  기사  >  백엔드 개발  >  PHP에서 opendir() 함수를 사용하여 디렉토리 목록을 알파벳순으로 정렬하려면 어떻게 해야 합니까?

PHP에서 opendir() 함수를 사용하여 디렉토리 목록을 알파벳순으로 정렬하려면 어떻게 해야 합니까?

Linda Hamilton
Linda Hamilton원래의
2024-10-31 11:51:30654검색

How can I sort directory listings alphabetically using the opendir() function in PHP?

PHP에서 opendir()을 사용하여 디렉토리 목록을 알파벳순으로 정렬

PHP의 opendir() 함수를 사용하여 디렉토리 목록을 알파벳순으로 정렬할 수 있습니다. 다음은 제공된 코드의 수정된 버전입니다.

<code class="php"><?php

// Open the images folder
$dirFiles = array();
if ($handle = opendir('Images')) {
    while (false !== ($file = readdir($handle))) {

        // Strip file extensions and remove unnecessary characters
        $crap = array(".jpg", ".jpeg", ".JPG", ".JPEG", ".png", ".PNG", ".gif", ".GIF", ".bmp", ".BMP", "_", "-");
        $newstring = str_replace($crap, " ", $file);

        // Hide folders and add files to an array
        if ($file != "." && $file != ".." && $file != "index.php" && $file != "Thumbnails") {
            $dirFiles[] = $file;
        }
    }
    closedir($handle);
}

// Sort the file array alphabetically
sort($dirFiles);

// Display the sorted list of images and thumbnails
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>

설명:

  1. 먼저 "Images" 디렉터리를 열고 다음을 사용하여 파일 이름을 읽습니다. opendir().
  2. 파일 확장자와 불필요한 문자를 제거하여 각 파일 이름을 정리합니다.
  3. 파일 이름을 저장하기 위해 $dirFiles라는 배열을 만듭니다.
  4. 이후 모든 파일을 배열로 읽어온 후 sort($dirFiles)를 호출하여 배열을 알파벳순으로 정렬합니다.
  5. 마지막으로 정렬된 배열을 반복하고 올바른 파일 이름과 경로를 사용하여 이미지와 썸네일을 표시합니다.

위 내용은 PHP에서 opendir() 함수를 사용하여 디렉토리 목록을 알파벳순으로 정렬하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.