(PHP 5, PHP 7)
Determine if current DirectoryIterator item is '.' or '..'
public bool DirectoryIterator::isDot ( void )
Determines if the current DirectoryIterator item is a directory and either . or ...
Returns:
TRUE if the entry is . or .., otherwise FALSE
Examples:
A DirectoryIterator::isDot() example
This example will list all files, omitting the . and .. entries.
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
foreach ($iterator as $fileinfo) {
if (!$fileinfo->isDot()) {
echo $fileinfo->getFilename() . "\n";
}
}
?>
The above example will output something similar to:
apple.jpg banana.jpg example.php pears.jpg
See also:
Please login to continue.