SplFileInfo::getSize

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

SplFileInfo::getSizeGets file size

说明

public SplFileInfo::getSize(): int|false

Returns the filesize in bytes for the file referenced.

参数

此函数没有参数。

返回值

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

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top