update : 2015.11.03
php.shukuma.com

검색:
 
 
디렉토리 핸들을 엽니다

opendir

(PHP 4, PHP 5, PHP 7)

opendir디렉토리 핸들을 엽니다

설명

resource opendir ( string $path [, resource $context ] )

closedir(), readdir(), rewinddir() 호출에서 사용하는 디렉토리 핸들을 엽니다.

인수

path

열 디렉토리 경로

context

context 인수에 대한 설명은 매뉴얼의 스트림 섹션을 참고하십시오.

반환값

성공시엔 디렉토리 핸들 resource, 실패시엔 FALSE를 반환합니다.

path가 유효하지 않은 디렉토리이거나, 권한 제한이나 파일시스템 오류로 인해 디렉토리를 열 수 없는 경우, opendir()FALSE를 반환하고 E_WARNING 레벨의 PHP 오류를 발생합니다. opendir() 앞에 '@'를 붙여 오류 출력을 없앨 수 있습니다.

변경점

버전 설명
5.0.0 pathftp:// URL 래퍼를 지원합니다.
4.3.0 path에 디렉토리 목록을 지원하는 URL을 사용할 수 있습니다. 그러나 PHP 4에서는 file:// URL 래퍼만 지원합니다.

예제

Example #1 opendir() 예제

<?php
$dir 
"/etc/php5";

// 알고 있는 디렉토리를 열어서, 내용을 읽어들이는 작업입니다.
if (is_dir($dir)) {
    if (
$dh opendir($dir)) {
        while ((
$file readdir($dh)) !== false) {
            echo 
"filename: $file : filetype: " filetype($dir $file) . "\n";
        }
        
closedir($dh);
    }
}
?>

위 예제의 출력 예시:

filename: . : filetype: dir
filename: .. : filetype: dir
filename: apache : filetype: dir
filename: cgi : filetype: dir
filename: cli : filetype: dir

참고

  • is_dir() - Tells whether the filename is a directory
  • readdir() - 디렉토리 핸들에서 엔트리를 읽습니다
  • dir() - Return an instance of the Directory class