Files
Gw0bm/app/Helpers/HumanReadable.php
2021-06-20 13:49:07 +00:00

18 lines
310 B
PHP
Executable File

<?php
namespace App\Helpers;
class HumanReadable
{
public static function bytesToHuman($bytes)
{
$units = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB'];
for ($i = 0; $bytes > 1024; $i++) {
$bytes /= 1024;
}
return round($bytes, 2) . ' ' . $units[$i];
}
}