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

2021-09-20 05:59:10 字數 603 閱讀 3959

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

js獲取時間戳 時間戳轉時間

1 var timestamp date.parse new date 精準到秒2 var timestamp new date valueof 精準到毫秒3.var timestamp new date gettime 精準到毫秒1 var a new date tolocaledatestrin...

PHP時間戳格式彙總 獲取時間,時間戳

1 php語言中的函式有許多種,各種應用方式不同,實現的功能也不盡相同。希望對新手的學習有所幫助!25 一,php時間戳函式獲取指定日期的unix時間戳 strtotime 2009 1 22 示例如下 67 echo strtotime 2009 1 22 結果 123255360089 說明 返...

獲取時間戳

方法 一 system.currenttimemillis 方法 二 calendar.getinstance gettimeinmillis 方法 三 newdate gettime 結果發現 system.currenttimemillis 這種方式速度最快 calendar.getinstan...