Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function formatSize(int $value): string |
||
13 | { |
||
14 | $len = count(self::UNITS) - 1; |
||
15 | |||
16 | for ($index = 0; $value >= 1024 && $index < $len; ++$index) { |
||
17 | $value = $value / 1024; |
||
18 | } |
||
19 | |||
20 | return number_format($value, self::PRECISION[$index], '.', '') . ' ' . self::UNITS[$index]; |
||
21 | } |
||
23 |