Search Results

  1. The only difference between CachingIterator and other Iterators such as ArrayIterator is the hasNext() method. Since the data will be loaded into the memory, the CachingIterator is able to check whether the given iterator has a next element.

  2. Table of Contents CachingIterator::__construct — Construct a new CachingIterator object for the iterator CachingIterator::count — The number of elements in the iterator CachingIterator::current — Return the current element CachingIterator::getCache — Retrieve the contents of the cache CachingIterator::getFlags — Get flags used CachingIterator::hasNext — Check whether the inner ...

  3. Nov 20, 2019 · The CachingIterator::current () function is an inbuilt function in PHP which is used to return the current element. Syntax: mixed CachingIterator::current( void ) Parameters: This function does not accept any parameters. Return Value: This function returns the current value of CachingIterator.

  4. Predefined Constants CachingIterator::CALL_TOSTRING Convert every element to string. CachingIterator::CATCH_GET_CHILD Don't throw exception in accessing children. CachingIterator::TOSTRING_USE_KEY Use key for conversion to string. CachingIterator::TOSTRING_USE_CURRENT Use current for conversion to string. CachingIterator::TOSTRING_USE_INNER Use inner for conversion to string. CachingIterator ...

  5. The CachingIterator class Introduction (PHP 5, PHP 7) This object supports cached iteration over another iterator. Class synopsis CachingIterator extends IteratorIterator implements OuterIterator , ArrayAccess , Countable { /* Constants */ const int CALL_TOSTRING = 1 ; const int CATCH_GET_CHILD = 16 ; const int TOSTRING_USE_KEY = 2 ; const int TOSTRING_USE_CURRENT = 4 ; const int TOSTRING_USE ...

  6. CachingIterator::CATCH_GET_CHILD Don't throw exception in accessing children. CachingIterator::TOSTRING_USE_KEY Use key for conversion to string. CachingIterator::TOSTRING_USE_CURRENT Use current for conversion to string. CachingIterator::TOSTRING_USE_INNER Use inner for conversion to string. CachingIterator::FULL_CACHE Cache all read data.

  7. The CachingIterator class Introduction (PHP 5, PHP 7, PHP 8) This object supports cached iteration over another iterator.