PHP Showing the file size in kilobytes

Showing the file size in kilobytes

<?
$file = "index.php";
echo round(filesize($file)/1024,2)." KB";
?>