DirectoryIterator::next
(PHP 5)
DirectoryIterator::next — Move forward to next DirectoryIterator item
Descripción
public void DirectoryIterator::next
( void
)
Move forward to the next DirectoryIterator item.
Parámetros
Esta función no tiene parámetros.
Valores devueltos
No devuelve ningún valor.
Ejemplos
Example #1 DirectoryIterator::next() example
List the contents of a directory using a while loop.
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
while($iterator->valid()) {
echo $iterator->getFilename() . "\n";
$iterator->next();
}
?>
El resultado del ejemplo sería algo similar a:
. .. apple.jpg banana.jpg index.php pear.jpg
Ver también
- DirectoryIterator::current() - Return the current DirectoryIterator item.
- DirectoryIterator::key() - Return the key for the current DirectoryIterator item
- DirectoryIterator::rewind() - Rewind the DirectoryIterator back to the start
- DirectoryIterator::valid() - Check whether current DirectoryIterator position is a valid file
- Iterator::next() - Avanza al siguiente elemento
There are no user contributed notes for this page.
