Código PHP:
function FUNC_tamayoFichero($file){
$bytes = filesize($file);
$types = Array("bytes","kilobytes","megabytes","gigabytes","terabytes");
$current = 0;
while ($bytes > 1024) {
$current++;
$bytes /= 1024;
}
return round($bytes,2)." ".$types[$current];
}
alguien tiene idea?