$longitude = $info['longitude'];$latitude = $info['latitude'];
//通過googled api 根據經緯度獲取當地時間與utc國際時間差
$url = "你的key";
$curl =curl_init();
//設定抓取的url
curl_setopt($curl, curlopt_url, $url
);
//設定標頭檔案的資訊作為資料流輸出
curl_setopt($curl, curlopt_header, 1);
//設定獲取的資訊以檔案流的形式返回,而不是直接輸出。
curl_setopt($curl, curlopt_returntransfer, 1);
//執行命令
$data = curl_exec($curl
);
//關閉url請求
curl_close($curl
);
if ($data == '' or $data == null
)
$data = substr($data,1,-1);
$data = '
//指定地點utc時差
$time = $data['rawoffset'];
//獲取gmt世界標準時間
$gmt = strtotime(gmdate("y-m-d h:i:s"));
//本地時間 - (國際時間 + 通過api獲取指定地點與國際時間的時區差 【注:結果為指定城市的當前時間】)【注:結果為本地當前時間與指定地點相差時區】(utc即本地時間為更精準的gmt)
$gmp = time() - ($gmt + $time); //時差
oracle獲取指定的日期 時間
size medium 本週 select trunc sysdate,d 1 from dual select trunc sysdate,d 7 from dual 本月 select trunc sysdate,mm from dual select last day trunc sysdat...
PHP獲取指定的時間戳
php獲取指定月份的時間戳 y 2016 獲取年,示例,真實環境從前端獲取資料 m 8 獲取月,示例,真實環境從前端獲取資料 month y.m 當前年月 month start strtotime month 指定月份月初時間戳 month end mktime 23,59,59,date m s...
python獲取本地的時間戳
import time 輸出本地時間 print time.strftime y m d x time.localtime 自定義時間 dt data 2016 05 05 20 28 54 轉換成時間陣列 timearray time.strptime dt,y m d h m s 轉換成新的時間...