PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
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 += (0.1*60); }
Show:  
Copy Clear