SplFileInfo::isDir()函数是PHP中的标准PHP库(SPL)的内置函数,用于检查文件是否为目录。
用法:
bool SplFileInfo::isDir( void )
参数:该函数不接受任何参数。
返回值:如果file是目录,则此函数返回true,否则返回false。
以下示例程序旨在说明PHP中的SplFileInfo::isDir()函数:
示例1:
<?php
// PHP Program to illustrate
// Splfileinfo::isDir() function
$file = new SplFileInfo(dirname("gfg.txt"));
$gfg = $file->isDir();
// Print result
var_dump($gfg);
echo "</br>";
$file = new SplFileInfo(__FILE__);
$gfg = $file->isDir();
// Print result
var_dump($gfg);
?>
输出:
bool(true) bool(false)
示例2:
<?php
// PHP program to use array to check
// multiple files
$GFG = array (
"/home/rajvir/Desktop/GeeksforGeeks/dummy.php",
"/home/rajvir/Desktop",
"/var/www/html/",
"frame.php"
);
foreach ($GFG as &$file_name) {
// Create new SplFile Object
$file = new SplFileInfo($file_name);
$gfg = $file->isDir();
// Print result
var_dump($gfg);
echo "</br>";
}
?>
输出:
bool(false) bool(true) bool(true) bool(false)
参考: http://php.net/manual/en/splfileinfo.isdir.php
相关用法
- PHP DirectoryIterator isDir()用法及代码示例
- PHP SplFileInfo getGroup()用法及代码示例
- PHP SplFileInfo getInode()用法及代码示例
- PHP SplFileInfo isWritable()用法及代码示例
- PHP SplFileInfo getFilename()用法及代码示例
- PHP SplFileInfo getOwner()用法及代码示例
- PHP SplFileInfo getMTime()用法及代码示例
- PHP SplFileInfo openFile()用法及代码示例
- PHP SplFileInfo getPathname()用法及代码示例
- PHP SplFileInfo::getPathInfo()用法及代码示例
- PHP SplFileInfo getPath()用法及代码示例
- PHP SplFileInfo getFileInfo()用法及代码示例
- PHP SplFileInfo isFile()用法及代码示例
- PHP SplFileInfo isExecutable()用法及代码示例
- PHP SplFileInfo getType()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplFileInfo isDir() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。