| 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) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Transform mm:ss to tm timestamp |
||
| 31 | * |
||
| 32 | * @param string $string formatted like mm:ss |
||
| 33 | * |
||
| 34 | * @return int |
||
| 35 | */ |
||
| 36 | 1 | public function textToTime($string) |
|
| 45 | } |
||
| 46 |