PHP 时间: 获取上个月
今天是12月31日,但返回12月:strtotime("-1 months")
echo date("Y-m", strtotime("-1 months"));
相同strtotime("last month")
如何正确退回上个月(11月)?
今天是12月31日,但返回12月:strtotime("-1 months")
echo date("Y-m", strtotime("-1 months"));
相同strtotime("last month")
如何正确退回上个月(11月)?
strtotime("first day of last month")
这是相对格式手册页中详述的重要部分。first day of
示例:http://codepad.viper-7.com/dB35q8(使用硬编码的今天日期)
strtotime("-1 months")
会是,但没有11月31日。这是过去的一天,这给了.你会看到它,当你这样做2012-11-31
2012-11-30
2012-12-01
echo date("Y-m-d", strtotime("-1 months"));
给出作为输出
2012-12-01
查看密码键盘