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

郭周園發表於2018-08-30
//最近的上上上一個週日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`);


相關文章