DirectoryIterator::isDir

(PHP 5, PHP 7)

DirectoryIterator::isDirDetermine if current DirectoryIterator item is a directory

Açıklama

public DirectoryIterator::isDir ( void ) : bool

Determines if the current DirectoryIterator item is a directory.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Returns TRUE if it is a directory, otherwise FALSE

Örnekler

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

.
..
apples
bananas
pears

Ayrıca Bakınız