| 1 | <?php |
||
| 29 | class Microtime |
||
| 30 | { |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Microtime comparison |
||
| 34 | * |
||
| 35 | * @param float $mt_start Microtime start point |
||
| 36 | * @param float $mt_end Microtime end point |
||
| 37 | * |
||
| 38 | * @return int |
||
| 39 | **/ |
||
|
|
|||
| 40 | |||
| 41 | public static function compare($mt_start, $mt_end) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Parsetime calculation |
||
| 50 | * |
||
| 51 | * @param float $microtime Microtime |
||
| 52 | * |
||
| 53 | * @return int |
||
| 54 | **/ |
||
| 55 | |||
| 56 | public static function untilNow($microtime) |
||
| 62 | } |
||
| 63 |