PHP Velho Oeste 2024

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 add a note

User Contributed Notes 1 note

up
-2
josh dot butts at vertive dot com
15 years ago
This function, as far as I can tell, returns boolean, not string.

$di = new DirectoryIterator(/path/to/iterate);
while ($di->valid())
{
    echo $di->getPathname() . "\n";
    $di->next();
}
To Top