SplFileInfo
PHP Manual

SplFileInfo::isDir

(PHP 5 >= 5.1.2)

SplFileInfo::isDirTells if the file is a directory

説明

public bool SplFileInfo::isDir ( void )

This method can be used to determine if the file is a directory.

パラメータ

この関数にはパラメータはありません。

返り値

Returns TRUE if a directory, FALSE otherwise.

例1 SplFileInfo::isDir() example

<?php
$d 
= new SplFileInfo(dirname(__FILE__));
var_dump($d->isDir());

$d = new SplFileInfo(__FILE__);
var_dump($d->isDir());
?>

上の例の出力は、たとえば 以下のようになります。

bool(true)
bool(false)


SplFileInfo
PHP Manual