使用1月份+1个月时的“strtotime”错误

时间:2013-11-01 13:00:46

标签: php date strtotime

我正在尝试制作一个带有多个标签的ajax日历,用于之前输入的日期范围。 但是例如:

我想要下个月,它打印3月而不是2月

$start= "2013-01-31";
$current =  date('n', strtotime("+1 month",$start)) //prints 3

我认为那是因为2014年2月是28并且从开始月份开始增加+31基数,但为什么呢?

1 个答案:

答案 0 :(得分:7)

您尝试将一个月添加到日期2013-01-31。它应该给2013年2月31日,但由于日期不存在,它将进入下一个有效月份(即3月)。

您可以使用以下解决方法:

$current = date('n', strtotime("first day of next month",strtotime($start)));

使用DateTime类:

$date = new DateTime('2013-01-31');
$date->modify('first day of next month');
echo $date->format('n');

这将正确输出2

Demo!