正在回答
1回答
您好,获取当前时间上个月:使用echo date("Y-m-d",strtotime("-1 month "));运行结果如图。
获取去年的时间戳:使用echo date("Y",strtotime("-1 year "));运行结果如图:。
如果想要的是上月的今天2017-03-22的时间戳,使用$result = date("Y-m-d",strtotime("-1 month "));echo strtotime($result);运行结果如图:
如果想要的是去年的时间戳,使用$result = date("Y",strtotime("-1 year "));echo strtotime($result);运行结果如图:
如果解决了您的问题,请采纳!祝学习愉快!
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星