Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php // get current time and round it to next half hour $start = (intdiv(time(),(30 * 60)) + 1) * (30*60); $end = strtotime('02:00'); // if end time less then start add one day if ($end < $start) $end += 60 * 60 * 24; while ($start <= $end) { echo date('H:i',$start) . PHP_EOL; // Increment Start date $start += (15*60); }
Copy Clear