PHP: 하위 디렉터리에서 반복적으로 파일 나열
하위 디렉터리를 포함하여 디렉터리의 모든 파일을 나열하고 결과를 배열에 저장하려면, PHP는 함께 작동하는 여러 내장 함수를 제공합니다.
RecursiveIteratorIterator 및 RecursiveDirectoryIterator 사용
다음 코드는 원하는 결과를 얻는 방법을 보여줍니다.
<code class="php">$directory = "foldername"; // Create a RecursiveDirectoryIterator object for the specified directory $directoryIterator = new RecursiveDirectoryIterator($directory); // Create a RecursiveIteratorIterator object for the directory iterator $iterator = new RecursiveIteratorIterator($directoryIterator, RecursiveIteratorIterator::SELF_FIRST); // Initialize an empty array to store the file names $files = []; // Iterate over the files in the directory foreach ($iterator as $filename) { // Filter out "." and ".." directories if ($filename->isDir()) { continue; } // Add the file name to the array $files[] = $filename; }</code>
설명
RecursiveDirectoryIterator 클래스는 지정된 경로의 파일과 디렉터리를 반복하는 개체를 생성합니다. RecursiveIteratorIterator 클래스는 RecursiveIterator 객체에 대한 재귀 반복을 제공하여 하위 디렉터리도 탐색되도록 합니다.
"."을 필터링하여 제거합니다. isDir() 메소드를 사용하여 ".." 디렉토리를 사용하면 $files 배열에 실제 파일만 추가합니다.
PHP 문서
위 내용은 PHP를 사용하여 하위 디렉터리의 파일을 재귀적으로 나열하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!