In this part of PHP tutorial we will learn about the filesize() function and its examples
In this part of PHP tutorial we will learn about the filesize() function and its examples
Syntax
<?php
$size=filesize("c:/rose1/ram.txt");
echo "size
is ".$size."
bytes";
?>
Output
size is 20 bytes