比如我已知
起始月份2014-08-12
截止月份2015-10-20
遍历这个时间段的月历
例如:
2014-08
2014-09
2014-10
2014-11
2014-12
2015-01
2015-02
。。。。。
2015-10
$startdate = '2014-08-12';$enddate = '2015-10-20';$s = strtotime($startdate);$e = strtotime($enddate);$num = (date('Y',$e)-date('Y',$s)-1)*12+(12-date('m',$s)+1)+date('m',$e);$months = array();for($i=0; $i<$num; $i++){ $d = mktime(0,0,0,date('m',$s)+$i,date('d',$s),date('Y',$s)); $months[] = date('Y-m',$d);}print_r($months);
太感谢了!楼上牛人!