今天是 12 月 31 日,但strtotime("-1 months")
返回 12 月:
echo date("Y-m", strtotime("-1 months"));
相同的strtotime("last month")
如何正确返回上个月(11月)?
今天是 12 月 31 日,但strtotime("-1 months")
返回 12 月:
echo date("Y-m", strtotime("-1 months"));
相同的strtotime("last month")
如何正确返回上个月(11月)?
strtotime("-1 months")
会2012-11-31
,但没有 11 月 31 日。这是过去的一天2012-11-30
,它给了2012-12-01
。当你这样做时,你会看到它
echo date("Y-m-d", strtotime("-1 months"));
给出作为输出
2012-12-01
见键盘