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