SplFileInfo::getBasename

(PHP 5 >= 5.2.2, PHP 7) Gets the base name of the file public string SplFileInfo::getBasename ([ string $suffix ] ) This method returns the base name of the file, directory, or link without path info. Parameters: suffix Optional suffix to omit from the base name returned. Returns: Returns the base name without path information.

SplFileInfo::getATime

(PHP 5 >= 5.1.2, PHP 7) Gets last access time of the file public int SplFileInfo::getATime ( void ) Gets the last access time for the file. Returns: Returns the time the file was last accessed. Exception: Throws RunTimeException on error. See also: fileatime() -

SplFileInfo::__construct

(PHP 5 >= 5.1.2, PHP 7) Construct a new SplFileInfo object public SplFileInfo::__construct ( string $file_name ) Creates a new SplFileInfo object for the file_name specified. The file does not need to exist, or be readable. Parameters: file_name Path to the file. Examples: SplFileInfo::__construct()

SeekableIterator::seek

(PHP 5 >= 5.1.0, PHP 7) Seeks to a position abstract public void SeekableIterator::seek ( int $position ) Seeks to a given position in the iterator. Parameters: position The position to seek to. Returns: No value is returned. Exception: Implementations should throw an OutOfBoundsException if the position is n

RecursiveIterator::hasChildren

(PHP 5 >= 5.1.0, PHP 7) Returns if an iterator can be created fot the current entry. public bool RecursiveIterator::hasChildren ( void ) Returns if an iterator can be created for the current entry. RecursiveIterator::getChildren(). Returns: Returns TRUE if the current entry can be iterated over, otherwise returns FALSE. See also:

RecursiveIterator::getChildren

(PHP 5 >= 5.1.0, PHP 7) Returns an iterator for the current entry. public RecursiveIterator RecursiveIterator::getChildren ( void ) Returns an iterator for the current iterator entry. Returns: An iterator for the current entry. See also: RecursiveIterator::hasChildren() -

OuterIterator::getInnerIterator

(PHP 5 >= 5.1.0, PHP 7) Returns the inner iterator for the current entry. public Iterator OuterIterator::getInnerIterator ( void ) Returns the inner iterator for the current iterator entry. Returns: The inner iterator for the current entry.

Countable::count

(PHP 5 >= 5.1.0, PHP 7) Count elements of an object abstract public int Countable::count ( void ) This method is executed when using the count() function on an object implementing Countable. Returns: The custom count as an integer. Note: The return value is cast to an integer. Examples: Countable::count() example

RegexIterator::setPregFlags

(PHP 5 >= 5.2.0, PHP 7) Sets the regular expression flags. public void RegexIterator::setPregFlags ( int $preg_flags ) Sets the regular expression flags. Parameters: preg_flags The regular expression flags. See RegexIterator::__construct() for an overview of available flags. Returns: No value is returned.

RegexIterator::setMode

(PHP 5 >= 5.2.0, PHP 7) Sets the operation mode. public void RegexIterator::setMode ( int $mode ) Sets the operation mode. Parameters: mode The operation mode. The available modes are listed below. The actual meanings of these modes are described in the predefined constants. RegexIterator modes value constant 0 RegexIterator::MATCH 1 RegexIterator::GET_MATCH 2