php獲取時間戳的方法:可以利用time()函式或strtotime()函式來獲取。time()函式返回乙個包含當前時間的unix時間戳的整數。strtotime()函式將任何字串的日期時間描述解析為unix時間戳。
time() 函式返回自 unix 紀元(january 1 1970 00:00:00 gmt)起的當前時間的秒數。返回乙個包含當前時間的 unix 時間戳的整數。
**實現:<?php
$t=time();
echo($t . "
");echo(date("y-m-d",$t));
strtotime() 函式將任何字串的日期時間描述解析為 unix 時間戳(自 january 1 1970 00:00:00 gmt 起的秒數)。
語法:int strtotime ( string $time [, int $now = time() ] )
引數:time 必需。規定日期/時間字串。
now 可選。規定用來計算返回值的時間戳。如果省略該引數,則使用當前時間。
**實現:<?php
// 設定時區
date_default_timezone_set("prc");
$time = strtotime("2018-01-18 08:08:08"); // 將指定日期轉成時間戳
// 列印當前時間 php_eol 換行符,相容不同系統
echo $time, php_eol;
// 更多例項
echo strtotime("now"), php_eol;e
cho strtotime("now"), php_eol;
echo strtotime("10 september 2000"), php_eol;
echo strtotime("+1 day"), php_eol;
echo strtotime("+1 week"), php_eol;
echo strtotime("+1 week 2 days 4 hours 2 seconds"), php_eol;
echo strtotime("next thursday"), php_eol;
echo strtotime("last monday"), php_eol;
獲取時間戳
方法 一 system.currenttimemillis 方法 二 calendar.getinstance gettimeinmillis 方法 三 newdate gettime 結果發現 system.currenttimemillis 這種方式速度最快 calendar.getinstan...
獲取時間戳,幾個時間點的時間戳
最近的上上上乙個週日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 ...
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...