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();
}
(PHP 5, PHP 7, PHP 8)
DirectoryIterator::valid — Check whether current DirectoryIterator position is a valid file
Check whether current DirectoryIterator position is a valid file.
此函数没有参数。
Returns true
if the position is valid, otherwise false
示例 #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
?>
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();
}