(PHP 5.1.0)
DirectoryIterator::isDot — Returns true if current entry is '.' or '..'
Check whether the current entry is a directory and either . or ...
This function has no parameters.
TRUE if the entry is . or .., otherwise FALSE
Example #1 A DirectoryIterator::isDot example
This example will list all files, omitting the . and .. entries.
<?php
$dir = new DirectoryIterator(dirname(__FILE__));
foreach ($dir as $fileinfo) {
if (!$fileinfo->isDot()) {
echo 'Filename '.$fileinfo->getFilename().PHP_EOL;
}
}
?>