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


strtotime 非常强大的一个获取时间戳的函数

php获取一个月前的时间戳:

strtotime("-0 year -1 month -0 day");

php获取三个月前的时间戳:

strtotime("-0 year -3 month -0 day");

php获取六个月前的时间戳:

strtotime("-0 year -6 month -0 day");

php获取一年前的时间戳:

strtotime("-1 year -0 month -0 day");

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM