How can I add a given number of time in PHP?
Below is are three time variables I would like to add:
time1: \"00:02:00\" time2: \"00:15:00\" time3: \"
Change from h into H.
h
H
h => 12-hour format of an hour with leading zeros
H => 24-hour format of an hour with leading zeros
Try
echo date('H:i:s', strtotime('00:02:00') + strtotime('00:15:00') + strtotime('00:08:00'));
Reference