(PHP 5, PHP 7, PHP 8)
DirectoryIterator::isDot — Determine if current DirectoryIterator item is '.' or '..'
Determines if the current DirectoryIterator
item is a directory and either
.
or ..
У цієї функції немає параметрів.
Приклад #1 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";
}
}
?>
Поданий вище приклад виведе щось схоже на:
apple.jpg banana.jpg example.php pears.jpg