$KB = $_FILES['bestand']['size'] / 1024; // grootte in bytes wordt in KB
$KB = round($KB, 3); // rond het aantal KB af op 3 decimalen
echo $KB; //geeft het aantal KB op 3 decimalen afgerond weer
$KB=$_FILES['bestand']['size']/1024;// grootte in bytes wordt in KB
$KB=round($KB,3);// rond het aantal KB af op 3 decimalen
echo$KB;//geeft het aantal KB op 3 decimalen afgerond weer