DirectoryIterator::valid

(PHP 5, PHP 7, PHP 8)

DirectoryIterator::validCheck whether current DirectoryIterator position is a valid file

Beschreibung

public DirectoryIterator::valid(): bool

Check whether current DirectoryIterator position is a valid file.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Returns true if the position is valid, otherwise false

Beispiele

Beispiel #1 A DirectoryIterator::valid() example

<?php
$iterator
= new DirectoryIterator(dirname(__FILE__));

// Loop to end of iterator
while($iterator->valid()) {
$iterator->next();
}

$iterator->valid(); // FALSE
$iterator->rewind();
$iterator->valid(); // TRUE

?>

Siehe auch

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top