DirectoryIterator::isDot

(PHP 5, PHP 7)

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

Descrierea

public DirectoryIterator::isDot ( ) : bool

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

Parametri

Această funcție nu are parametri.

Valorile întoarse

true if the entry is . or .., otherwise false

Exemple

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";
    }
}
?>

Exemplul de mai sus va afișa ceva similar cu:

apple.jpg
banana.jpg
example.php
pears.jpg

A se vedea și

add a note add a note

User Contributed Notes

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