skip to Main Content

php time round up & round down

I am using the following function to round the time to closest 15 minutes. function roundTime($time){ $seconds = $time; $rounded_seconds = round($seconds / (15 * 60)) * (15 * 60); return date('H:i', $rounded_seconds) . "n"; } What I actually need…

VIEW QUESTION
Back To Top
Search