獲取時間戳

2021-08-01 11:42:38 字數 322 閱讀 4781

//方法 一

system.currenttimemillis();   

//方法 二

calendar.getinstance().gettimeinmillis();  

//方法 三

newdate().gettime(); 

結果發現 system.currenttimemillis() 這種方式速度最快

calendar.getinstance().gettimeinmillis() 這種方式速度最慢,看看原始碼會發現,canlendar因為要處理時區問題會耗費很多的時間。

所以建議多使用第一種方式。

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...

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

最近的上上上乙個週日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 ...

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

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