I'm rounding time to one minute using:
$mytime = mdate("H:i:s", $time_in_seconds);
$rounded_time = date('H:i:s', round(strtotime($mytime)/60)*60);
The output is for example: 01:09:00 from not rounded 01:08:34.
How can use the code but keep the seconds format rather than change to date?
$mytimelook like originally? – Galen Jun 2 '12 at 22:40sfrom the format if you don't want to show seconds? – Mike B Jun 2 '12 at 22:40$mytimelooks like01:08:34usinggmdate("H:i:s", $time_in_seconds);– CyberJunkie Jun 2 '12 at 22:46