(PHP 5, PHP 7)
DirectoryIterator::__construct — Constructs a new directory iterator from a path
$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.
Throws a RuntimeException if the path
is an empty string.
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()); } } ?>
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/directoryiterator.construct.php