루트 및 디렉터리 순회 표시기를 제외하고 PHP에서 하위 디렉터리를 검색하는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-11-14 14:35:02
원래의
891명이 탐색했습니다.

How to Retrieve Subdirectories in PHP, Excluding Root and Directory Traversal Indicators?

Retrieving Subdirectories Using PHP

In PHP, you may encounter the need to access all subdirectories within a specific directory, excluding root and directory traversal indicators. Here's how you can achieve this using two different approaches.

Option 1: Utilizing glob()

The glob() function provides a straightforward way to list files and directories matching a specific pattern. To retrieve only subdirectories, use it with the GLOB_ONLYDIR option:

$subdirectories = glob('*/*', GLOB_ONLYDIR);
로그인 후 복사

Option 2: Employing array_filter

array_filter allows you to filter an array based on a callback function. You can use it to identify subdirectories by excluding "." and ".." and filtering the glob() results:

function is_subdirectory($item) { return is_dir($item) && $item != '.' && $item != '..'; }
$subdirectories = array_filter(glob('*'), 'is_subdirectory');
로그인 후 복사

Usage in a Function

Once you have the array of subdirectories, you can pass it to a function for further processing. For instance, the following function prints the paths of all subdirectories:

function print_subdirectory_paths($subdirectories) {
  foreach ($subdirectories as $subdirectory) {
    echo $subdirectory . PHP_EOL;
  }
}
로그인 후 복사

위 내용은 루트 및 디렉터리 순회 표시기를 제외하고 PHP에서 하위 디렉터리를 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿