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"))
八戒常用之php时间戳strtotime前一天或后一天的日期
最新推荐文章于 2023-05-12 12:07:16 发布