天天看點

擷取時間戳,幾個時間點的時間戳

//最近的上上上一個周日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');