This repository has been archived on 2024-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
Files
w0bm/app/Helpers/HumanReadable.php

18 lines
310 B
PHP

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