PHP Dokumentation: Directoryiterator next
12. Januar 2010 von werner
DirectoryIterator::next
(PHP 5)
DirectoryIterator::next — Move forward to next DirectoryIterator item
Beschreibung
public void DirectoryIterator::next ( void )
Move forward to the next DirectoryIterator item.
Parameter-Liste
Diese Funktion hat 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 erzeugteine ähnliche Ausgabe wie:
...apple.jpgbanana.jpgindex.phppear.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