DirectoryIterator::isDir

(PHP 5, PHP 7, PHP 8)

DirectoryIterator::isDirDetermine if current DirectoryIterator item is a directory

Beschreibung

public DirectoryIterator::isDir ( ) : bool

Determines if the current DirectoryIterator item is a directory.

Parameter-Liste

Diese Funktion besitzt 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

add a note add a note

User Contributed Notes 1 note

up
1
dev at mike dot pp dot ua
4 years ago
Documentation is a bit misleading.

DirectoryIterator->isDir() and other classes (e.g. SplFileInfo->isDir()) return TRUE for symlinks of directories. Better use getType() method instead, which returns 'link' for symlinks.

This was reported long time ago - https://bugs.php.net/bug.php?id=72364 , but docs are still not fixed.
To Top