PHP 5.2 で指定された日付の範囲内のすべての日付を出力する方法を知りたいのですが、このタスクの関数を呼び出したくありません。
質問する
2128 次
1 に答える
4
これでうまくいくはずです。
<?php
$start = '2013/01/01'; //start date
$end = '2013/01/30'; //end date
$dates = array();
$start = $current = strtotime($start);
$end = strtotime($end);
while ($current <= $end) {
$dates[] = date('Y/m/d', $current);
$current = strtotime('+1 days', $current);
}
//now $dates hold an array of all the dates within that date range
print_r($dates);
?>
于 2013-01-23T13:30:22.290 に答える