無參數獲取某個時間段的時間戳
//獲取今日開始時間戳和結束時間戳 $today_start=mktime(0,0,0,date('m'),date('d'),date('Y')); $today_end=mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1; //獲取昨日起始時間戳和結束時間戳 $yesterday_start=mktime(0,0,0,date('m'),date('d')-1,date('Y')); $yesterday_end=mktime(0,0,0,date('m'),date('d'),date('Y'))-1; //獲取上周起始時間戳和結束時間戳 $lastweek_start=mktime(0,0,0,date('m'),date('d')-date('w')+1-7,date('Y')); $lastweek_end=mktime(23,59,59,date('m'),date('d')-date('w')+7-7,date('Y')); //獲取本周周起始時間戳和結束時間戳 $thisweek_start=mktime(0,0,0,date('m'),date('d')-date('w')+1,date('Y')); $thisweek_end=mktime(23,59,59,date('m'),date('d')-date('w')+7,date('Y')); //獲取本月起始時間戳和結束時間戳 $thismonth_start=mktime(0,0,0,date('m'),1,date('Y')); $thismonth_end=mktime(23,59,59,date('m'),date('t'),date('Y'));
根據頁面傳過來的值獲取某個時間段的時間戳
$month = empty($_REQUEST["month"]) ? time() : strtotime($_REQUEST["month"]); //獲取今日開始時間戳和結束時間戳 $today_start=mktime(0,0,0,date('m',$month),date('d',$month),date('Y',$month)); $today_end=mktime(0,0,0,date('m',$month),date('d',$month)+1,date('Y',$month))-1; //獲取昨日起始時間戳和結束時間戳 $yesterday_start=mktime(0,0,0,date('m',$month),date('d',$month)-1,date('Y',$month)); $yesterday_end=mktime(0,0,0,date('m',$month),date('d',$month),date('Y',$month))-1; //php獲取上周起始時間戳和結束時間戳 $lastweek_start=mktime(0,0,0,date('m',$month),date('d',$month)-date('w',$month)+1-7,date('Y',$month)); $lastweek_end=mktime(23,59,59,date('m',$month),date('d',$month)-date('w',$month)+7-7,date('Y',$month)); //獲取本周周起始時間戳和結束時間戳 $thisweek_start=mktime(0,0,0,date('m',$month),date('d',$month)-date('w',$month)+1,date('Y',$month)); $thisweek_end=mktime(23,59,59,date('m',$month),date('d',$month)-date('w',$month)+7,date('Y',$month)); //php獲取本月起始時間戳和結束時間戳 $thismonth_start=mktime(0,0,0,date('m',$month),1,date('Y',$month)); $thismonth_end=mktime(23,59,59,date('m',$month),date('t',$month),date('Y',$month)); //php獲取本月上旬起始時間戳和結束時間戳 $thismonthf_start=mktime(0,0,0,date('m',$month),1,date('Y',$month)); $thismonthf_end=mktime(23,59,59,date('m',$month),10,date('Y',$month)); //php獲取本月中旬起始時間戳和結束時間戳 $thismonths_start=mktime(0,0,0,date('m',$month),11,date('Y',$month)); $thismonths_end=mktime(23,59,59,date('m',$month),20,date('Y',$month)); //php獲取本月下旬起始時間戳和結束時間戳 $thismontht_start=mktime(0,0,0,date('m',$month),21,date('Y',$month)); $thismontht_end=mktime(23,59,59,date('m',$month),date('t',$month),date('Y',$month));
PS:本月上旬和和中旬均為10天,下旬為本月減去上中旬之后剩下的天數
