The RecursiveIterator interface

(PHP 5 >= 5.1.0, PHP 7)

Wstęp

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

Zestawienie interfejsu

RecursiveIterator extends Iterator {
/* Metody */
public getChildren ( void ) : RecursiveIterator
public hasChildren ( void ) : bool
/* Metody dziedziczone */
abstract public Iterator::current ( void ) : mixed
abstract public Iterator::key ( void ) : scalar
abstract public Iterator::next ( void ) : void
abstract public Iterator::rewind ( void ) : void
abstract public Iterator::valid ( void ) : bool
}

Spis treści

add a note add a note

User Contributed Notes

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