Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment afficher la plage d'heures

$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);