RecursiveIteratorIterator::rewind

(PHP 5, PHP 7) Rewind the iterator to the first element of the top level inner iterator public void RecursiveIteratorIterator::rewind ( void ) Returns: No value is returned. This function is currently not documented; only its argument list is available.

RecursiveIteratorIterator::key

(PHP 5, PHP 7) Access the current key public mixed RecursiveIteratorIterator::key ( void ) Returns: The current key. This function is currently not documented; only its argument list is available.

RecursiveIteratorIterator::getMaxDepth

(PHP 5 >= 5.1.0, PHP 7) Get max depth public mixed RecursiveIteratorIterator::getMaxDepth ( void ) Gets the maximum allowable depth. Returns: The maximum accepted depth, or FALSE if any depth is allowed. This function is currently not documented; only its argument list is available. See

RecursiveRegexIterator::__construct

(PHP 5 >= 5.2.0, PHP 7) Creates a new RecursiveRegexIterator. public RecursiveRegexIterator::__construct ( RecursiveIterator $iterator , string $regex [, int $mode = self::MATCH [, int $flags = 0 [, int $preg_flags = 0 ]]] ) Creates a new regular expression iterator. Parameters: iterator The recursive iterator to apply this regex filter to. regex The

RecursiveIteratorIterator::next

(PHP 5, PHP 7) Move forward to the next element public void RecursiveIteratorIterator::next ( void ) Returns: No value is returned. This function is currently not documented; only its argument list is available.

RecursiveIteratorIterator::endIteration

(PHP 5 >= 5.1.0, PHP 7) End Iteration public void RecursiveIteratorIterator::endIteration ( void ) Called when the iteration ends (when RecursiveIteratorIterator::valid() first returns FALSE. Returns: No value is returned. This function is currently not documented; only its argument list is available.

RecursiveIteratorIterator::beginIteration

(PHP 5 >= 5.1.0, PHP 7) Begin Iteration public void RecursiveIteratorIterator::beginIteration ( void ) Called when iteration begins (after the first RecursiveIteratorIterator::rewind() call. Returns: No value is returned. This function is currently not documented; only its argument list is available.

RecursiveIteratorIterator::__construct

(PHP 5 >= 5.1.3, PHP 7) Construct a RecursiveIteratorIterator public RecursiveIteratorIterator::__construct ( Traversable $iterator [, int $mode = RecursiveIteratorIterator::LEAVES_ONLY [, int $flags = 0 ]] ) Creates a RecursiveIteratorIterator from a RecursiveIterator. Parameters: iterator The iterator being constructed from. Either a RecursiveIterator or IteratorAg

RecursiveIteratorIterator::callHasChildren

(PHP 5 >= 5.1.0, PHP 7) Has children public bool RecursiveIteratorIterator::callHasChildren ( void ) Called for each element to test whether it has children. Returns: TRUE if the element has children, otherwise FALSE This function is currently not documented; only its argument list is available.

RecursiveIteratorIterator::current

(PHP 5, PHP 7) Access the current element value public mixed RecursiveIteratorIterator::current ( void ) Returns: The current elements value. This function is currently not documented; only its argument list is available.