PHP Doku:: Determine if current DirectoryIterator item is a directory - directoryiterator.isdir.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)IteratorenThe DirectoryIterator classDirectoryIterator::isDir

Ein Service von Reinhard Neidl - Webprogrammierung.

The DirectoryIterator class

<<DirectoryIterator::getType

DirectoryIterator::isDot>>

DirectoryIterator::isDir

(PHP 5)

DirectoryIterator::isDirDetermine if current DirectoryIterator item is a directory

Beschreibung

public bool DirectoryIterator::isDir ( void )

Determines if the current DirectoryIterator item is a directory.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns TRUE if it is a directory, otherwise FALSE

Beispiele

Beispiel #1 DirectoryIterator::isDir() example

This example lists the directories within the directory of the current script.

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));
foreach (
$iterator as $fileinfo) {
    if (
$fileinfo->isDir()) {
        echo 
$fileinfo->getFilename() . "\n";
    }
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

.
..
apples
bananas
pears

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)