向后取 +1

向前取 -1last

获取昨日时间
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());
最后修改于:2021-09-22 17:31
文章链接: https://oct.cn/view/34
版权声明: 本站所有文章除特别声明外。转载请注明来自 十月笔记