DirectoryIterator::isDot
(PHP 5)
DirectoryIterator::isDot — Determine if current DirectoryIterator item is '.' or '..'
Beschreibung
public bool DirectoryIterator::isDot
( void
)
Determines if the current DirectoryIterator item is a directory and either . or ...
Parameter-Liste
Diese Funktion hat keine Parameter.
Rückgabewerte
TRUE if the entry is . or ..,
otherwise FALSE
Beispiele
Beispiel #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";
}
}
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
apple.jpg banana.jpg example.php pears.jpg
Siehe auch
- DirectoryIterator::getType() - Determine the type of the current DirectoryIterator item
- DirectoryIterator::isDir() - Determine if current DirectoryIterator item is a directory
- DirectoryIterator::isFile() - Determine if current DirectoryIterator item is a regular file
- DirectoryIterator::isLink() - Determine if current DirectoryIterator item is a symbolic link
There are no user contributed notes for this page.
