(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::getSize — Gets file size
此函数没有参数。
The filesize in bytes on success, or false
on failure.
A RuntimeException will be thrown if the file does not exist or an error occurs.
示例 #1 SplFileInfo::getSize() example
<?php
$info = new SplFileInfo('example.jpg');
echo $fileinfo->getFilename() . " " . $fileinfo->getSize();
?>
以上示例的输出类似于:
example.jpg 15385