How can I add time to a digit time value,
currently my code looks like this:
$time = strtotime('00:00:00');
$addTime = strtotime('+5 minutes', $time);
$addTime = date('h:i:s', $addTime);
If I echo $addTime
I get this value:
1472680800147268110012:05:00
which is obviously wrong.
It should look like this:
00:05:00