MastodonHelp/web/lib/ghs.php
2023-12-26 11:16:24 +01:00

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