Files
ntspi-app/app/Ship/Helpers/ByteConverter.php
T
2026-03-20 21:47:02 +05:00

17 lines
330 B
PHP
Executable File

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