八戒常用之php时间戳strtotime前一天或后一天的日期

  • Post author:
  • Post category:php


date_default_timezone_set('PRC'); //默认时区

今天: date("Y-m-d", time())


昨天: date("Y-m-d", strtotime("-1 day")) 


明天: date("Y-m-d", strtotime("+1 day"))


5天后: date('Y-m-d', strtotime("+5 day"))


一周后: date("Y-m-d", strtotime("+1 week"))


一周零两天四小时两秒后: date("Y-m-d G:H:s", strtotime("+1 week 2 days 4 hours 2 seconds"))


下个星期四: date("Y-m-d", strtotime("next Thursday"))


上个周一: date("Y-m-d", strtotime("last Monday"))


一个月前: date("Y-m-d", strtotime("last month"))


一个月前: date("Y-m-d", strtotime("-1 month"))


一个月后: date("Y-m-d", strtotime("+1 month"))



版权声明:本文为wolf23151269原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。