MastodonHelp/web/site/mustard/include/ghs.php

13 lines
264 B
PHP
Raw Normal View History

2020-10-13 08:21:26 +02:00
<?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);
}
?>