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 = strtotime('10:00'); $end = strtotime('18:00'); // if end time less then start add one day if ($end < $start) $end += 60 * 60 * 24; while ($start <= $end) { echo date('H:i:s',$start) . PHP_EOL; // Increment Start date $start += (4); }
Show:  
Copy Clear