| 1 | <?php |
||
| 5 | class Time |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Transform tm timestamp to mm:ss.ccc string |
||
| 9 | * |
||
| 10 | * @param int $time |
||
| 11 | * @param bool $milliseconds |
||
| 12 | * |
||
| 13 | * @return string |
||
| 14 | */ |
||
| 15 | 1 | public function timeToText($time, $milliseconds = false) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * Transform mm:ss to tm timestamp |
||
| 42 | * |
||
| 43 | * @param string $string formatted like mm:ss |
||
| 44 | * |
||
| 45 | * @return int |
||
| 46 | */ |
||
| 47 | 1 | public function textToTime($string) |
|
| 56 | } |
||
| 57 |