NoRewindIterator::valid

(PHP 5 >= 5.1.0, PHP 7) Validates the iterator public bool NoRewindIterator::valid ( void ) Checks whether the iterator is valid. Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available. See also:

NoRewindIterator::rewind

(PHP 5 >= 5.1.0, PHP 7) Prevents the rewind operation on the inner iterator. public void NoRewindIterator::rewind ( void ) Prevents the rewind operation on the inner iterator. Returns: No value is returned. Examples: NoRewindIterator::rewind() example This example demonstrates that calling rewind on a NoRewindIterator

NoRewindIterator::next

(PHP 5 >= 5.1.0, PHP 7) Forward to the next element public void NoRewindIterator::next ( void ) Forwards to the next element. Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: NoRewindIterator::

NoRewindIterator::key

(PHP 5 >= 5.1.0, PHP 7) Get the current key public mixed NoRewindIterator::key ( void ) Gets the current key. Returns: The current key. This function is currently not documented; only its argument list is available. See also: NoRewindIterator::next() -

NoRewindIterator::getInnerIterator

(PHP 5 >= 5.1.0, PHP 7) Get the inner iterator public iterator NoRewindIterator::getInnerIterator ( void ) Gets the inner iterator, that was passed in to NoRewindIterator. Returns: The inner iterator, as passed to NoRewindIterator::__construct(). This function is currently not documented; only its argument list is available.

NoRewindIterator::current

(PHP 5 >= 5.1.0, PHP 7) Get the current value public mixed NoRewindIterator::current ( void ) Gets the current value. Returns: The current value. This function is currently not documented; only its argument list is available. See also: NoRewindIterator::key() -

NoRewindIterator::__construct

(PHP 5 >= 5.1.0, PHP 7) Construct a NoRewindIterator public NoRewindIterator::__construct ( Iterator $iterator ) Constructs a NoRewindIterator. Parameters: iterator The iterator being used. Returns: A NoRewindIterator() based on the passed in iterator. Examples: NoRewindIterator::_

MultipleIterator::valid

(PHP 5 >= 5.3.0, PHP 7) Checks the validity of sub iterators public bool MultipleIterator::valid ( void ) Checks the validity of sub iterators. Returns: Returns TRUE if one or all sub iterators are valid depending on flags, otherwise FALSE This function is currently not documented; only its argument list is available.

MultipleIterator::setFlags

(PHP 5 >= 5.3.0, PHP 7) Sets flags public void MultipleIterator::setFlags ( int $flags ) Sets flags. Parameters: flags The flags to set, according to the Flag Constants Returns: No value is returned. This function is currently not documented; only its argument list is available.

MultipleIterator::rewind

(PHP 5 >= 5.3.0, PHP 7) Rewinds all attached iterator instances public void MultipleIterator::rewind ( void ) Rewinds all attached iterator instances. Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: