SplFileInfo::getSize()函數是PHP中的標準PHP庫(SPL)的內置函數,用於獲取字節大小的文件。
用法:
int SplFileInfo::getSize( void )
參數:該函數不接受任何參數。
返回值:此函數返回以字節為單位的文件大小。
下麵的程序演示了PHP中的SplFileInfo::getSize()函數。
示例1:
<?php
// PHP Program to illustrate
// Splfileinfo getSize function
$file = new SplFileInfo("gfg.txt");
$gfg = $file->getSize();
// Print real path if exist
print($gfg . "</br>");
$file = new SplFileInfo(__FILE__);
$gfg = $file->getSize();
// Print real path if exist
print($gfg);
?>
輸出:
120 144
示例2:
<?php
// PHP program to use array to check multiple files
$GFG = array (
"/home/rajvir/Desktop/GeeksforGeeks/dummy.php",
"/home/rajvir/Desktop/gfg_code.cpp",
"/var/www/html/gfg.txt",
"frame.php"
);
foreach ($GFG as &$file_name) {
// create new SplFile Object
$file = new SplFileInfo($file_name);
$gfg = $file->getSize();
// Print real path if exist
print($gfg. "</br>");
}
?>
輸出:
893 5 51 291
參考: http://php.net/manual/en/splfileinfo.getsize.php
相關用法
- PHP SplFixedArray getSize()用法及代碼示例
- PHP Imagick getSize()用法及代碼示例
- PHP DirectoryIterator getSize()用法及代碼示例
- PHP Gmagick getsize()用法及代碼示例
- PHP SplFileInfo getBasename()用法及代碼示例
- PHP SplFileInfo getCTime()用法及代碼示例
- PHP SplFileInfo getATime()用法及代碼示例
- PHP SplFileInfo getExtension()用法及代碼示例
- PHP SplFileInfo getFileInfo()用法及代碼示例
- PHP SplFileInfo getType()用法及代碼示例
- PHP SplFileInfo getMTime()用法及代碼示例
- PHP SplFileInfo getOwner()用法及代碼示例
- PHP SplFileInfo getPath()用法及代碼示例
- PHP SplFileInfo getPathname()用法及代碼示例
- PHP SplFileInfo getInode()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFileInfo getSize() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。