In PHP, you can use the filesize() function to calculate the size of a file, the syntax format is "filesize(filename)". The filesize() function can return the size of the specified file; if successful, it returns the number of bytes of the file size, if it fails, it returns FALSE.
The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
In PHP, you can use filesize () function to calculate the size of a file.
filesize() function returns the size of the specified file.
Syntax
filesize(filename)
Parameter filename: specifies the file to be checked and cannot be omitted.
Return value: If successful, this function returns the number of bytes of the file size; if failed, it returns FALSE.
Example: Calculate and return the size of the test.txt file
Output:
20
Recommended learning:《PHP Video tutorial》
The above is the detailed content of How to calculate the size of a file in php. For more information, please follow other related articles on the PHP Chinese website!