PHP Dokumentation: Directoryiterator construct
12. Januar 2010 von werner
DirectoryIterator::__construct
(PHP 5)
DirectoryIterator::__construct — Constructs a new directory iterator from a path
Beschreibung
DirectoryIterator::__construct ( string $path )
Constructs a new directory iterator from a path.
Parameter-Liste
- path
The path of the directory to traverse.
Fehler/Exceptions
Throws an UnexpectedValueException if the path cannot be opened.
Beispiele
Beispiel #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());
}
}
?>