DirectoryIterator::isDir

(PHP 5, PHP 7, PHP 8)

DirectoryIterator::isDirRetorna true se o elemento atual é um diretório

Descrição

DirectoryIterator::isDir ( ) : bool
Aviso

Esta função não está documentada; somente a lista de argumentos está disponível.

Verifica se o arquivo é um diretório.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

true se é um diretório, false caso contrário

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