Conditions | 2 |
Paths | 1 |
Total Lines | 11 |
Lines | 11 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
44 | View Code Duplication | private function formatBytes($bytes, $precision = 2): string |
|
45 | { |
||
46 | $units = ['B', 'KB', 'MB', 'GB', 'TB']; |
||
47 | |||
48 | $bytes = max($bytes, 0); |
||
49 | $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); |
||
50 | $pow = min($pow, count($units) - 1); |
||
51 | $bytes /= (1 << (10 * $pow)); |
||
52 | |||
53 | return round($bytes, $precision) . ' ' . $units[$pow]; |
||
54 | } |
||
55 | } |
||
56 |