PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $period = (new DatePeriod(new DateTime('11:00:00'), new DateInterval('PT1H'), new DateTime('17:00:00')))->getIterator(); //$period = Carbon\CarbonPeriod::create('11:00:00', '1 hour', '17:00:00'); $data = []; while ($period->valid()) { $current = $period->current(); $period->next(); if ($next = $period->current()) { $data[] = $current->format('h:i A') . ' - ' . $next->format('h:i A'); } } echo implode(PHP_EOL, $data);
Show:  
Copy Clear