我有想要显示日期和月份的数据。
如何通过在 json上显示在php中显示当月的当月日期?
示例:
Feb = (1=1),(2=1),(3=3),(4=2),(5=1),(6=3)....28
etc...
我的约会对象:
| date | IP
===============================
| 2015-02-01 | 10.88.25.139 |
| 2015-02-02 | 10.88.25.138 |
| 2015-02-03 | 10.88.25.130 |
| 2015-02-03 | 10.88.25.131 |
| 2015-02-03 | 10.88.25.132 |
| 2015-02-04 | 10.88.25.139 |
| 2015-02-04 | 10.88.25.138 |
| 2015-02-05 | 10.88.25.131 |
| 2015-02-06 | 10.88.25.131 |
| 2015-02-06 | 10.88.25.131 |
| 2015-02-06 | 10.88.25.131 |
答案 0 :(得分:0)
以下是答案http://stackoverflow.com/a/13346468/6390490
您可以使用解决方案
// for each day in the month
for($i = 1; $i <= date('t'); $i++)
{
// add the date to the dates array
$dates[] = date('Y') . "-" . date('m') . "-" . str_pad($i, 2, '0', STR_PAD_LEFT);
}
// show the dates array
var_dump($dates);
它包含php的简单日期功能