PHP beginner |
|
ja net wat ik zocht (moet ik er zelf niet meer aan kloten xD)
edit:
ik heb het scriptje een beetje aangepast dat hij afrond op 2 getallen na de komma (hij gaf anders nogal grote waardes)
<?
$iFileSize = filesize('test.zip');
if($iFileSize >= 1048567)
{
$iFileSizeMB = $iFileSize / 1048567;
$iFileSizeMBafgerond = round($iFileSizeMB, 2);
echo $iFileSizeMBafgerond." Mb";
}
elseif($iFileSize >= 1024 && $iFileSize < 1048567)
{
$iFileSizeKB = $iFileSize / 1024;
$iFileSizeKBafgerond = round($iFileSizeKB, 2);
echo $iFileSizeKBafgerond." Kb";
}
else
$iFileSizeafgerond = round($iFileSize, 2);
echo $iFileSizeafgerond. "b";
?>
<? if($iFileSize >= 1048567) { $iFileSizeMB = $iFileSize / 1048567; $iFileSizeMBafgerond = round($iFileSizeMB, 2); echo $iFileSizeMBafgerond." Mb"; } elseif($iFileSize >= 1024 && $iFileSize < 1048567) { $iFileSizeKB = $iFileSize / 1024; $iFileSizeKBafgerond = round($iFileSizeKB, 2); echo $iFileSizeKBafgerond." Kb"; } else $iFileSizeafgerond = round($iFileSize, 2); echo $iFileSizeafgerond. "b"; ?>
|