DirectoryIterator::isDot

(PHP 5)

DirectoryIterator::isDotDetermine if current DirectoryIterator item is '.' or '..'

Опис

public bool DirectoryIterator::isDot ( void )

Determines if the current DirectoryIterator item is a directory and either . or ...

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

TRUE if the entry is . or .., otherwise FALSE

Приклади

Приклад #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

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top