Posted in

Convierte bytes a kbs y mbs

Pasa bytes a kilobytes y a megabytes según convenga.


function convierteBytes($bytes){
$kb = $bytes/1024;
if($kb<1024){
if($kb!=0){
$resultado = round($kb)." Kb.";
}else{
$resultado = "--";
}
}else{
$mb = $kb/1024;
$resultado = round($mb)." Mb.";
}

return ($resultado != "0 Kb.") ? $resultado : "< 1 Kb.";
}

Deixa un comentari

L'adreça electrònica no es publicarà. Els camps necessaris estan marcats amb *


The reCAPTCHA verification period has expired. Please reload the page.