Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | function printTimeDuration($startTime) |
||
16 | { |
||
17 | if (gettype($startTime) === 'string') { |
||
18 | $currentTime = microtime(); |
||
19 | } else { |
||
20 | $currentTime = microtime(true); |
||
21 | } |
||
22 | |||
23 | $completedIn = (float) $currentTime - (float) $startTime; |
||
24 | $completedIn = number_format((float) $completedIn, 4, '.', ''); |
||
25 | |||
26 | message('It was done in '.$completedIn.' ms.'); |
||
27 | } |
||
54 |