0

今天我发现了这个函数,它显示一个月有多少天cal_days_in_month()。但我想要做的是把所有的日子都列进数组中,像这样。

$days = array(
"2012-11-01","2012-12-01","2012-13-01"...etc
)

有人能指出我正确的方向吗?

亲切的问候弗兰克!

4

2 回答 2

2
$start    = new DateTime('first day of this month');
$end      = new DateTime('first day of next month');
$interval = DateInterval::createFromDateString('1 day');
$period   = new DatePeriod($start, $interval, $end);

foreach ($period as $dt)
{
  echo $dt->format("l Y-m-d") . PHP_EOL;
}

看到它在行动

参考

于 2013-02-09T22:20:42.060 回答
0
 $fromdate=strtotime(date("Y-m-d",mktime(0, 0, 0, $month, '01', $year)));
    $todate=strtotime(date("Y-m-t",mktime(0, 0, 0, $month, '01', $year)));

        for($i=$fromdate;$i<=$todate;$i++)
        {
        $i=$i+84600;
        echo     $nextdate[]=date('Y-m-d',$i);
        }
于 2013-06-24T06:52:49.680 回答