The RecursiveIterator interface

(PHP 5 >= 5.1.0)

Introduktion

Classes implementing RecursiveIterator can be used to iterate over iterators recursively.

Interface synopsis

RecursiveIterator extends Iterator {
/* Metoder */
public RecursiveIterator getChildren ( void )
public bool hasChildren ( void )
/* Nedarvede metoder */
abstract public mixed Iterator::current ( void )
abstract public scalar Iterator::key ( void )
abstract public void Iterator::next ( void )
abstract public void Iterator::rewind ( void )
abstract public boolean Iterator::valid ( void )
}

Indholdsfortegnelse

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top