Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como exibir o intervalo de horas

$start = strtotime('6:00am');
$end = strtotime('09:00am');
$range = array();
while ($start !== $end)
{
    $start = strtotime('+30 minutes',$start);
    $range[] = date('h:ia', $start);
}
print_r($range);