SplFileInfo::getType()函数是PHP中的标准PHP库(SPL)的内置函数,用于获取文件类型。
用法:
string SplFileInfo::getType( void )
参数:该函数不接受任何参数。
返回值:此函数返回文件的类型,即链接,目录或文件。
以下示例程序旨在说明PHP中的SplFileInfo::getType()函数:
程序1:
<?php
// PHP Program to illustrate
// Splfileinfo::getType() function
$file = new SplFileInfo(dirname("gfg.txt"));
$gfg = $file->getType();
// Print result
print($gfg . "</br>");
$file = new SplFileInfo(__FILE__);
$gfg = $file->getType();
// Print result
print($gfg);
?>
输出:
dir file
程序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);
// Print result
echo $file->getType() . "</br>";
}
?>
输出:
file dir dir file
参考: http://php.net/manual/en/splfileinfo.gettype.php
相关用法
- PHP gettype()用法及代码示例
- PHP IntlCalendar getType()用法及代码示例
- PHP ReflectionParameter getType()用法及代码示例
- PHP DirectoryIterator getType()用法及代码示例
- PHP SplFileInfo getSize( )用法及代码示例
- PHP SplFileInfo getExtension()用法及代码示例
- PHP SplFileInfo getPerms()用法及代码示例
- PHP SplFileInfo getATime()用法及代码示例
- PHP SplFileInfo getRealPath()用法及代码示例
- PHP SplFileInfo getCTime()用法及代码示例
- PHP SplFileInfo getMTime()用法及代码示例
- PHP SplFileInfo getOwner()用法及代码示例
- PHP SplFileInfo::getPathInfo()用法及代码示例
- PHP SplFileInfo getPathname()用法及代码示例
- PHP SplFileInfo getInode()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplFileInfo getType() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。