Conditions | 2 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
20 | 1 | private function formatBytes($bytes, $precision = 2): string |
|
21 | { |
||
22 | 1 | $units = ['B', 'KB', 'MB', 'GB', 'TB']; |
|
23 | |||
24 | 1 | $bytes = max($bytes, 0); |
|
25 | 1 | $pow = floor(($bytes ? log($bytes) : 0) / log(1024)); |
|
26 | 1 | $pow = min($pow, count($units) - 1); |
|
27 | 1 | $bytes /= (1 << (10 * $pow)); |
|
28 | |||
29 | 1 | return round($bytes, $precision) . ' ' . $units[$pow]; |
|
30 | } |
||
31 | } |
||
32 |