Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
37 | private function fromBytes(int $bytes, int $decimals = 2): string |
||
38 | { |
||
39 | $size = ['B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; |
||
40 | $factor = (int) floor((strlen((string) $bytes) - 1) / 3); |
||
41 | |||
42 | return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . $size[$factor]; |
||
43 | } |
||
44 | } |
||
45 |