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");