The RecursiveIterator interface

(PHP 5 >= 5.1.0, PHP 7)

소개

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

인터페이스 개요

RecursiveIterator extends Iterator {
/* 메소드 */
public RecursiveIterator getChildren ( void )
public bool hasChildren ( void )
/* 상속된 메소드 */
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 )
}

Table of Contents

add a note add a note

User Contributed Notes

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