Files
ntspi-app/app/Helpers/ByteConverter.php
T
2024-09-19 16:06:49 +05:00

17 lines
325 B
PHP

<?php
namespace App\Helpers;
class ByteConverter
{
public static function bytesToHuman($bytes)
{
$units = ['Б', 'КиБ', 'МиБ', 'ГиБ', 'ТиБ', 'ПиБ'];
for ($i = 0; $bytes > 1024; $i++) {
$bytes /= 1024;
}
return round($bytes, 2) . ' ' . $units[$i];
}
}