MastodonHelp/web/site/mustard/include/ghs.php
pezcurrel 5ec1354546 ...
2020-10-18 06:53:27 +02:00

12 lines
264 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);
}
?>