Gets file size
Syntax
filesize ( string $filename ) : int
Parameters
filename
Path to the file.
Return
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.
Examples
1
<? $filename = $_SERVER["DOCUMENT_ROOT"] . "/assets/txt/file.txt"; $return = filesize($filename); echo $return; ?>
5