时间:2021-07-01 10:21:17 帮助过:28人阅读
$t = '2011-01-28 17:21:22'; //改成 28 日
print_r(array(
date('Y年m月',strtotime($t)),
date('Y年m月',strtotime('+ 1 month',strtotime($t))),
date('Y年m月',strtotime('+ 2 month',strtotime($t))),
));
Array
(
[0] => 2011年01月
[1] => 2011年02月
[2] => 2011年03月
)
print_r(array(
date('Y年m月d日',strtotime('2011-02-31')),
date('Y年m月d日',strtotime('2011-04-31')),
date('Y年m月d日',strtotime('2011-06-31')),
));
Array
(
[0] => 2011年03月03日
[1] => 2011年05月01日
[2] => 2011年07月01日
)