The NoRewindIterator class

(PHP 5 >= 5.1.0, PHP 7)

Introduction

This iterator ignores rewind operations. This allows processing an iterator in multiple partial foreach loops.

Class synopsis

NoRewindIterator extends IteratorIterator {
/* Methods */
public __construct ( Iterator $iterator )
public current ( void ) : mixed
public getInnerIterator ( void ) : iterator
public key ( void ) : mixed
public next ( void ) : void
public rewind ( void ) : void
public valid ( void ) : bool
/* Inherited methods */
public IteratorIterator::current ( void ) : mixed
public IteratorIterator::key ( void ) : mixed
public IteratorIterator::next ( void ) : void
public IteratorIterator::rewind ( void ) : void
public IteratorIterator::valid ( void ) : bool
}

Table of Contents