PHP生成带有月份和年份显示的数组
我有两个表格的日期:
开始日期:2010年12月24日
结束日期:2011-10-06(今天)
现在我需要根据上面的开始日期和结束日期按月为该组生成一个数组:
$arr_month['oct_11'] = array(
'month' => 'October 2011'
);
.
.
.
$arr_month['feb_11'] = array(
'month' => 'Feb 2011'
);
$arr_month['jan_11'] = array(
'month' => 'January 2011'
);
$arr_month['dec_10'] = array(
'month' => 'December 2010'
);
如您所见,如果我使用此表,表中应该有 11 行数组来生成表格。
I have two dates of the form:
Start Date: 2010-12-24
End Date: 2011-10-06 (today)
Now I need to generate an array for this group by month from the above start date and end date:
$arr_month['oct_11'] = array(
'month' => 'October 2011'
);
.
.
.
$arr_month['feb_11'] = array(
'month' => 'Feb 2011'
);
$arr_month['jan_11'] = array(
'month' => 'January 2011'
);
$arr_month['dec_10'] = array(
'month' => 'December 2010'
);
As you can see the table should be got 11 rows in the table if I use this array to generate a table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
演示
Demo
http://ideone.com/ozLOx
http://ideone.com/ozLOx