PHP Simple QA
It contains Simple Questions and Answers in PHP
how can check file size in php
filesize() function used returns the size of the specified file.it returns the file size in bytes on success or FALSE on failure.
<?php
echo filesize("dule.txt");
?>
it will be 20
Newer Post
Older Post
Home