DirectoryIterator::isDir

(PHP 5, PHP 7)

DirectoryIterator::isDirDetermine if current DirectoryIterator item is a directory

설명

public bool DirectoryIterator::isDir ( void )

Determines if the current DirectoryIterator item is a directory.

인수

이 함수는 인수가 없습니다.

반환값

Returns TRUE if it is a directory, otherwise FALSE

예제

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

위 예제의 출력 예시:

.
..
apples
bananas
pears

참고

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