SplFileInfo::getFileInfo()函数是PHP中的标准PHP库(SPL)的内置函数,用于获取文件的文件信息。
用法:
SplFileInfo::getFileInfo( $class )
参数:该函数接受可选的单个参数$class。它用于指定splfile派生类的名称。
返回值:此函数返回SplFileInfo对象。
以下示例程序旨在说明PHP中的SplFileInfo::getFileInfo()函数:
程序1:
<?php
// PHP Program to illustrate
// Splfileinfo::getFileInfo() function
// Create new SPlFileInfo Object
$file = new SplFileInfo("gfg.txt");
// Print result
var_dump( $file->getFileInfo());
?>
输出:
object(SplFileInfo)#2 (2) { ["pathName":"SplFileInfo":private]=> string(7) "gfg.txt" ["fileName":"SplFileInfo":private]=> string(7) "gfg.txt" }
程序2:
<?php
// PHP program to use array to check
// multiple files
$GFG = array (
"/home/rajvir/Desktop/GeeksforGeeks/dummy.php",
"/home/rajvir/Desktop/gfg.txt",
"/var/www/html/gfg.php",
"demo.c"
);
foreach ($GFG as $file_name) {
// Create new SPlFileInfo Object
$file = new SplFileInfo($file_name);
// Print result
var_dump($file->getFileInfo());
echo "</br>";
}
?>
输出:
object(SplFileInfo)#2 (2) { ["pathName":"SplFileInfo":private]=> string(44) "/home/rajvir/Desktop/GeeksforGeeks/dummy.php" ["fileName":"SplFileInfo":private]=> string(9) "dummy.php" } object(SplFileInfo)#1 (2) { ["pathName":"SplFileInfo":private]=> string(28) "/home/rajvir/Desktop/gfg.txt" ["fileName":"SplFileInfo":private]=> string(7) "gfg.txt" } object(SplFileInfo)#2 (2) { ["pathName":"SplFileInfo":private]=> string(21) "/var/www/html/gfg.php" ["fileName":"SplFileInfo":private]=> string(7) "gfg.php" } object(SplFileInfo)#1 (2) { ["pathName":"SplFileInfo":private]=> string(6) "demo.c" ["fileName":"SplFileInfo":private]=> string(6) "demo.c" }
参考: http://php.net/manual/en/splfileinfo.getfileinfo.php
相关用法
- PHP SplFileInfo getSize( )用法及代码示例
- PHP SplFileInfo getFilename()用法及代码示例
- PHP SplFileInfo getType()用法及代码示例
- PHP SplFileInfo isDir()用法及代码示例
- PHP SplFileInfo getGroup()用法及代码示例
- PHP SplFileInfo getRealPath()用法及代码示例
- PHP SplFileInfo getCTime()用法及代码示例
- PHP SplFileInfo getBasename()用法及代码示例
- PHP SplFileInfo getExtension()用法及代码示例
- PHP SplFileInfo getATime()用法及代码示例
- PHP SplFileInfo getPerms()用法及代码示例
- PHP SplFileInfo isExecutable()用法及代码示例
- PHP SplFileInfo getInode()用法及代码示例
- PHP SplFileInfo getMTime()用法及代码示例
- PHP SplFileInfo getOwner()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplFileInfo getFileInfo() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。