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");
其他例 输出7天前时间
echo date("Y-m-d H:i:s",strtotime("-0 year -0 month -7 day"));