php获取前一天,前一个月,前半年,前一年的时间戳

2022/6/30 14:24:09

本文主要是介绍php获取前一天,前一个月,前半年,前一年的时间戳,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!


#获取前一小时
strtotime("-1 hour")

#获取前一天
strtotime("-1 day")

#获取前一周
strtotime("-1 week")

#获取前一个月
strtotime("-1 month")

#获取前半年
strtotime("-6 month")

#获取前一年
strtotime("-1 year")



这篇关于php获取前一天,前一个月,前半年,前一年的时间戳的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程