//最近的上上上一个周日24点时间戳
$threeweekago=strtotime(date('Y-m-d',time()).'-2 week -'.date('w',time()).' day +1 day');
//最近的上上一个周日24点时间戳
$twoweekago=strtotime(date('Y-m-d',time()).'-1 week -'.date('w',time()).' day +1 day');
//最近的上一个周日,如果今天周日就是今天24点时间戳
$lastweek=strtotime(date('Y-m-d',time()).'-'.date('w',time()).' day +1 day');
//本月月初时间戳
$yue=strtotime(date('Y-m',time()));
//上月月初时间戳
$lastyue=strtotime(date('Y-m',time()).'last month');
//前月月初时间戳
$twolastyue=strtotime(date('Y-m',time()).'last month'.'last month');