DirectoryIterator::__construct

(PHP 5, PHP 7, PHP 8)

DirectoryIterator::__constructConstructs a new directory iterator from a path

Açıklama

publicDirectoryIterator::__construct(string$directory)

Constructs a new directory iterator from a path.

Bağımsız Değişkenler

directory

The path of the directory to traverse.

Hatalar/İstisnalar

Throws an UnexpectedValueException if the directory does not exist.

Throws a ValueError if the directory is an empty string.

Sürüm Bilgisi

Sürüm: Açıklama
8.0.0 Now throws a ValueError if directory is an empty string; previously it threw a RuntimeException.

Örnekler

Örnek 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());
}
}
?>

Ayrıca Bakınız

To Top