DirectoryIterator::next
(PHP 5, PHP 7, PHP 8)
DirectoryIterator::next — Move forward to next DirectoryIterator item
Beschreibung
Move forward to the next DirectoryIterator item.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Es wird kein Wert zurückgegeben.
Beispiele
Beispiel #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();
}
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
. .. apple.jpg banana.jpg index.php pear.jpg
Siehe auch
- 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() - Rückt den Zeiger auf das nächste Element vor