PHP Velho Oeste 2024

DirectoryIterator::valid

(PHP 5, PHP 7, PHP 8)

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

Description

public DirectoryIterator::valid(): bool

Check whether current DirectoryIterator position is a valid file.

Parameters

This function has no parameters.

Return Values

Returns true if the position is valid, otherwise false

Examples

Example #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

?>

See Also

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