向后取 +1
向前取 -1
或 last
获取昨日时间
date("Y-m-d",strtotime("-1 day"))
当前时间一周后
date("Y-m-d",strtotime("+1 week"))
当前时间1小时后
date("Y-m-d G:H:s",strtotime("+1 hours"))
当前时间5秒后
date("Y-m-d G:H:s",strtotime("+5 seconds"))
当前时间一个月后
date("Y-m-d",strtotime("+1 month"))
指定时间戳加上几天
date('Y-m-d H:i:s',$t+1*24*60*60);
时间转时间戳
strtotime(date('Y-m-d',time()));
时间戳转时间
date('Y-m-d',time());