DirectoryIterator
PHP Manual

DirectoryIterator::__construct

(PHP 5)

DirectoryIterator::__constructConstructs a new directory iterator from a path

설명

DirectoryIterator::__construct ( string $path )

Constructs a new directory iterator from a path.

인수

path

The path of the directory to traverse.

오류/예외

Throws an UnexpectedValueException if the path cannot be opened.

예제

Example #1 A DirectoryIterator::__construct example

This example will list the contents of the directory containing the script.

<?php
$dir 
= new DirectoryIterator(dirname(__FILE__));
foreach (
$dir as $fileinfo) {
    if (!
$fileinfo->isDot()) {
        
var_dump($fileinfo->getFilename());
    }
}
?>

참고


DirectoryIterator
PHP Manual