FilterIterator::rewind

(PHP 5 >= 5.1.0, PHP 7) Rewind the iterator public void FilterIterator::rewind ( void ) Rewind the iterator. Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: FilterIterator::current() -

FilterIterator::next

(PHP 5 >= 5.1.0, PHP 7) Move the iterator forward public void FilterIterator::next ( void ) Move the iterator forward. Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: FilterIterator::current()

FilterIterator::key

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

FilterIterator::getInnerIterator

(PHP 5 >= 5.1.0, PHP 7) Get the inner iterator public Iterator FilterIterator::getInnerIterator ( void ) Get the inner iterator. Returns: The inner iterator. This function is currently not documented; only its argument list is available.

FilterIterator::current

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

FilterIterator::__construct

(PHP 5 >= 5.1.0, PHP 7) Construct a filterIterator public FilterIterator::__construct ( Iterator $iterator ) Constructs a new FilterIterator, which consists of a passed in iterator with filters applied to it. Parameters: iterator The iterator that is being filtered. Returns: The FilterIterator. This functio

FilterIterator::accept

(PHP 5 >= 5.1.0, PHP 7) Check whether the current element of the iterator is acceptable public abstract bool FilterIterator::accept ( void ) Returns whether the current element of the iterator is acceptable through this filter. Returns: TRUE if the current element is acceptable, otherwise FALSE. Examples: FilterIterator::accept() ex

FilesystemIterator::setFlags

(PHP 5 >= 5.3.0, PHP 7) Sets handling flags public void FilesystemIterator::setFlags ([ int $flags ] ) Sets handling flags. Parameters: flags The handling flags to set. See the FilesystemIterator constants. Returns: No value is returned. Examples: FilesystemIterator::key() example

FilesystemIterator::rewind

(PHP 5 >= 5.3.0, PHP 7) Rewinds back to the beginning public void FilesystemIterator::rewind ( void ) Rewinds the directory back to the start. Returns: No value is returned. Examples: FilesystemIterator::rewind() example <?php $iterator = new FilesystemIterator(dirname(__FILE__), FilesystemIterator::KEY_AS_FILENAME

FilesystemIterator::next

(PHP 5 >= 5.3.0, PHP 7) Move to the next file public void FilesystemIterator::next ( void ) Move to the next file. Returns: No value is returned. Examples: FilesystemIterator::next() example List the contents of a directory using a while loop. <?php $iterator = new FilesystemIterator(dirname(__FILE__)); while($it