CachingIterator::rewind

(PHP 5, PHP 7) Rewind the iterator public void CachingIterator::rewind ( void ) Rewind the iterator. Returns: No value is returned. This function is currently not documented; only its argument list is available.

CachingIterator::getInnerIterator

(PHP 5, PHP 7) Returns the inner iterator public Iterator CachingIterator::getInnerIterator ( void ) Returns the iterator sent to the constructor. Returns: Returns an object implementing the Iterator interface. This function is currently not documented; only its argument list is available.

CachingIterator::getFlags

(PHP 5 >= 5.2.0, PHP 7) Get flags used public int CachingIterator::getFlags ( void ) Get the bitmask of the flags used for this CachingIterator instance. Returns: Description... This function is currently not documented; only its argument list is available.

CachingIterator::getCache

(PHP 5 >= 5.2.0, PHP 7) Retrieve the contents of the cache public array CachingIterator::getCache ( void ) Retrieve the contents of the cache. Note: The CachingIterator::FULL_CACHE flag must be being used. Returns: An array containing the cache items. Exception: Throws a BadMethodCallException when the CachingIterator::FULL_CACHE flag is not being used.

CachingIterator::count

(PHP 5 >= 5.2.2, PHP 7) The number of elements in the iterator public int CachingIterator::count ( void ) May return the number of elements in the iterator. Returns: The count of the elements iterated over. This function is currently not documented; only its argument list is available.

CachingIterator::__construct

(PHP 5, PHP 7) Construct a new CachingIterator object for the iterator. public CachingIterator::__construct ( Iterator $iterator [, int $flags = self::CALL_TOSTRING ] ) Parameters: iterator Iterator to cache flags Bitmask of flags. This function is currently not documented; only its argument l

CachingIterator::current

(PHP 5, PHP 7) Return the current element public void CachingIterator::current ( void ) May return the current element in the iteration. Returns: Mixed This function is currently not documented; only its argument list is available. See also: Iterator::current() -

ArrayIterator::uksort

(PHP 5 >= 5.2.0, PHP 7) User defined sort public void ArrayIterator::uksort ( string $cmp_function ) Sort the entries by key using user defined function. Parameters: cmp_function The compare function used for the sort. Returns: No value is returned. This function is currently not documented; only its argum

ArrayIterator::uasort

(PHP 5 >= 5.2.0, PHP 7) User defined sort public void ArrayIterator::uasort ( string $cmp_function ) Sort the entries by values using user defined function. Parameters: cmp_function The compare function used for the sort. Returns: No value is returned. This function is currently not documented; only its ar

ArrayIterator::setFlags

(PHP 5 >= 5.1.0, PHP 7) Set behaviour flags public void ArrayIterator::setFlags ( string $flags ) Sets behaviour flags. Parameters: flags A bitmask as follows: 0 = Properties of the object have their normal functionality when accessed as list (var_dump, foreach, etc.). 1 = Array indices can be accessed as properties in read/write. Returns: No value is ret