(PHP 5.1.0)
DirectoryIterator::isDot — Determine if current DirectoryIterator item is '.' or '..'
Determines if the current DirectoryIterator item is a directory and either . or ...
이 함수는 인수가 없습니다.
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
$iterator = new DirectoryIterator(dirname(__FILE__));
foreach ($iterator as $fileinfo) {
if (!$fileinfo->isDot()) {
echo $fileinfo->getFilename() . "\n";
}
}
?>
위 예제의 출력 예시:
apple.jpg banana.jpg example.php pears.jpg