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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。