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 — Verifica se a posição atual do DirectoryIterator é um arquivo válido
Verifica se a posição atual do DirectoryIterator é um arquivo válido.
Esta função não possui parâmetros.
Retorna true
se a posição é válida, caso contrário false
Exemplo #1 Um exemplo de DirectoryIterator::valid()
<?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();
}