SplFileInfo::getSize

Gets file size

Description

public intfalse SplFileInfo::getSize()

Returns the filesize in bytes for the file referenced.

Parameters

This function has no parameters.

Return Values

The filesize in bytes on success, or false on failure.

Errors/Exceptions

A RuntimeException will be thrown if the file does not exist or an error occurs.

Examples

Example #1 SplFileInfo::getSize example

<?php
$info = new SplFileInfo('example.jpg');
echo $fileinfo->getFilename() . " " . $fileinfo->getSize();
?>

The above example will output something similar to:

example.jpg 15385

See Also

  • filesize