RecursiveDirectoryIterator::key

(PHP 5, PHP 7) Return path and filename of current dir entry public string RecursiveDirectoryIterator::key ( void ) Returns: The path and filename of the current dir entry. This function is currently not documented; only its argument list is available.

RecursiveDirectoryIterator::hasChildren

(PHP 5, PHP 7) Returns whether current entry is a directory and not '.' or '..' public bool RecursiveDirectoryIterator::hasChildren ([ bool $allow_links = false ] ) Parameters: allow_links Returns: Returns whether the current entry is a directory, but not '.' or '..' This function is currently not documented; onl

RecursiveDirectoryIterator::getSubPathname

(PHP 5 >= 5.1.0, PHP 7) Get sub path and name public string RecursiveDirectoryIterator::getSubPathname ( void ) Gets the sub path and filename. Returns: The sub path (sub directory) and filename. This function is currently not documented; only its argument list is available. See also:

RecursiveDirectoryIterator::getSubPath

(PHP 5 >= 5.1.0, PHP 7) Get sub path public string RecursiveDirectoryIterator::getSubPath ( void ) Gets the sub path. Returns: The sub path (sub directory). This function is currently not documented; only its argument list is available. See also: RecursiveDirectoryI

RecursiveDirectoryIterator::getChildren

(PHP 5 >= 5.1.0, PHP 7) Returns an iterator for the current entry if it is a directory public mixed RecursiveDirectoryIterator::getChildren ( void ) Returns: The filename, file information, or $this depending on the set flags. See the FilesystemIterator constants. This function is currently not documented; only its argument list is available.

RecursiveDirectoryIterator::__construct

(PHP 5 >= 5.1.2, PHP 7) Constructs a RecursiveDirectoryIterator public RecursiveDirectoryIterator::__construct ( string $path [, int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO ] ) Constructs a RecursiveDirectoryIterator() for the provided path. Parameters: path The path of the directory to be iterated over.

RecursiveCallbackFilterIterator::hasChildren

(PHP 5 >= 5.4.0, PHP 7) Check whether the inner iterator's current element has children public bool RecursiveCallbackFilterIterator::hasChildren ( void ) Returns TRUE if the current element has children, FALSE otherwise. Returns: Returns TRUE if the current element has children, FALSE otherwise. Examples: RecursiveCallbackFilterIter

RecursiveCallbackFilterIterator::getChildren

(PHP 5 >= 5.4.0, PHP 7) Return the inner iterator's children contained in a RecursiveCallbackFilterIterator public RecursiveCallbackFilterIterator RecursiveCallbackFilterIterator::getChildren ( void ) Fetches the filtered children of the inner iterator. RecursiveCallbackFilterIterator::hasChildren() should be used to determine if there are children to be fetched. Returns: Returns a RecursiveC

RecursiveCallbackFilterIterator::__construct

(PHP 5 >= 5.4.0, PHP 7) Create a RecursiveCallbackFilterIterator from a RecursiveIterator public RecursiveCallbackFilterIterator::__construct ( RecursiveIterator $iterator , string $callback ) Creates a filtered iterator from a RecursiveIterator using the callback to determine which items are accepted or rejected. Parameters: iterator The recursive iterator to be filtered.

RecursiveCachingIterator::hasChildren

(PHP 5 >= 5.1.0, PHP 7) Check whether the current element of the inner iterator has children public bool RecursiveCachingIterator::hasChildren ( void ) Returns: TRUE if the inner iterator has children, otherwise FALSE This function is currently not documented; only its argument list is available.