No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

filesize

(PHP 4, PHP 5, PHP 7)

filesizeGets file size

Description

filesize ( string $filename ) : int

Gets the size for the given file.

PHP: filesize - Manual Home of Manuel PHP  Contents Haut

Parameters

filename

Path to the file.

PHP: filesize - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns the size of the file in bytes, or FALSE (and generates an error of level E_WARNING) in case of an error.

Note: Because PHP's integer type is signed and many platforms use 32bit integers, some filesystem functions may return unexpected results for files which are larger than 2GB.

PHP: filesize - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 filesize() example

<?php

// outputs e.g.  somefile.txt: 1024 bytes

$filename 'somefile.txt';
echo 
$filename ': ' filesize($filename) . ' bytes';

?>

PHP: filesize - Manual Home of Manuel PHP  Contents Haut

Errors/Exceptions

Upon failure, an E_WARNING is emitted.

PHP: filesize - Manual Home of Manuel PHP  Contents Haut

Notes

Note: The results of this function are cached. See clearstatcache() for more details.

Tip

As of PHP 5.0.0, this function can also be used with some URL wrappers. Refer to Supported Protocols and Wrappers to determine which wrappers support stat() family of functionality.

PHP: filesize - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph