Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
33 | 9 | public static function getReadableTime($time) |
|
34 | { |
||
35 | 9 | if ($time < 1000) { |
|
36 | 3 | return "{$time}ms"; |
|
37 | } |
||
38 | |||
39 | 6 | $prefix = ''; |
|
40 | 6 | if ($time >= 60000) { |
|
41 | 3 | $prefix = floor($time / 60000) . 'm '; |
|
42 | 3 | $time = $time % 60000; |
|
43 | 3 | } |
|
44 | |||
45 | 6 | return $prefix . number_format((float) ($time / 1000), 3, '.', '') . 's'; |
|
46 | } |
||
47 | } |
||
48 |