The IteratorIterator class

(PHP 5 >= 5.1.0, PHP 7)

锟斤拷锟�

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 current ( void ) : mixed
public getInnerIterator ( void ) : Traversable
public key ( void ) : mixed
public next ( void ) : void
public rewind ( void ) : void
public valid ( void ) : bool
}

注锟斤拷

Note:

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

Table of Contents