10 lines
262 B
PHP
10 lines
262 B
PHP
<?php
|
|
function ghs($b) {
|
|
$o='';
|
|
if (round($b/1024,1) >= 1) $o=round($b/1024,2).' KiB';
|
|
if (round($b/1048576,1) >= 1) $o=round($b/1048576,2).' MiB';
|
|
if (round($b/1073741824,1) >= 1) $o=round($b/1073741824,2).' GiB';
|
|
if ($o=='') $o=$b.' B';
|
|
return($o);
|
|
}
|
|
?>
|