13.07.2003, 11:08
PHP-Code:
<?php
$file = "index.php";
$file2= "logo2.jpg";
function dateigröße($file)
{
$size=round(filesize($file)/(1024*1024), 3);
echo"<br>".$size."MB";
}
dateigröße($file);
dateigröße($file2);
?>
PHP-Code:
<?php
$file = "index.php";