update : 2015.11.03
php.shukuma.com

검색:
 
 
The IteratorIterator class

The IteratorIterator class

(PHP 5 >= 5.1.0)

소개

This iterator wrapper allows the conversion of anything that is Traversable into an Iterator. It is important to understand that most classes that do not implement Iterators have reasons as most likely they do not allow the full Iterator feature set. If so, techniques should be provided to prevent misuse, otherwise expect exceptions or fatal errors.

클래스 개요

IteratorIterator implements OuterIterator {
/* 메소드 */
public __construct ( Traversable $iterator )
public mixed current ( void )
public Traversable getInnerIterator ( void )
public scalar key ( void )
public void next ( void )
public void rewind ( void )
public bool valid ( void )
}

주의

Note:

This class permits access to methods of the inner iterator via the __call magic method.

Table of Contents