downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

DirectoryIterator::isExecutable> <DirectoryIterator::isDir
[edit] Last updated: Tue, 18 Jun 2013

view this page in

DirectoryIterator::isDot

(PHP 5)

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

Description

public bool DirectoryIterator::isDot ( void )

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

Parameters

This function has no parameters.

Return Values

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

Examples

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

The above example will output something similar to:

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

See Also



add a note add a note User Contributed Notes DirectoryIterator::isDot - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites