参考 http://php.net/manual/en/refs.calendar.php
1 2 3 4 5 6 7 8 9 10 11 12 |
function date_step_callback($callback, $start, $stop = null, $step = 'P1D'){ $date1 = new DateTime($start); $date2 = new DateTime($stop); while($date1 < $date2){ $start = $date1->format('Y-m-d'); $date1->add(new DateInterval($step)); $stop = $date1->format('Y-m-d'); $callback($start, $stop); } } |