GlobIterator::__construct
Construct a directory using glob
&reftitle.description;
public GlobIterator::__construct
stringpath
intflagsFilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO
Constructs a new directory iterator from a glob expression.
&reftitle.parameters;
path
The path of the directory.
flags
Option flags, the flags may be a bitmask of the
FilesystemIterator constants.
&reftitle.examples;
GlobIterator example
count()) {
echo 'No matches';
} else {
$n = 0;
printf("Matched %d item(s)\r\n", $iterator->count());
foreach ($iterator as $item) {
printf("[%d] %s\r\n", ++$n, $iterator->key());
}
}
?>
]]>
&example.outputs.similar;
&reftitle.seealso;
DirectoryIterator::__construct
GlobIterator::count
glob