PHP跨時區(UTC時間)應用解決方案

來源:互聯網
上載者:User

1.將程式內部時區設定為UTC時間.(UTC 也可以叫 GMT)
PHP設定:
date_default_timezone_set("UTC");
Yii設定:
config/main.php 中添加 :'timeZone'=>'UTC',
如此設定後,PHP產生的時間基本都是UTC時間了.例如:
//輸出當前UTC時間
date("Y-m-d H:i:s");

2.資料庫中儲存UTC時間.
可以用PHP控制,也可以通過設定資料庫時區來實現.

3.服務端發送到前端的時間均為UTC時間格式, 由JS將其轉換為本地時間後進行顯示.JS內部資料與顯示資料分離.
JS轉換函式參考: 複製代碼 代碼如下:/**
* 將UTC時間轉為本地時間
* @param string utcTime utc時間字串 格式 :'Y-m-d H:i:s'
* @return string 本地時間字串 格式 :'Y-m-d H:i:s'
*/
function utcToLocal(utcTime) {
if(utcTime==='0000-00-00 00:00:00' || utcTime===null || utcTime==='' || utcTime===undefined)
return utcTime;
var locTime = new Date(); //local時間對象
utcTime=utcTime.replace("-", "/").replace("-", "/"); //Firefox不相容'-'分隔日期
//解析字串及本地時間賦值
locTime.setTime(Date.parse(utcTime)-locTime.getTimezoneOffset()*60000);
//本地時間字串格式化
var year = locTime.getFullYear();
var month = preZero(locTime.getMonth()+1);
var date = preZero(locTime.getDate());
var hour = preZero(locTime.getHours());
var minute = preZero(locTime.getMinutes());
var second = preZero(locTime.getSeconds());
return year+'-'+month+'-'+date+' '+hour+':'+minute+':'+second;
}
/**
* 將本地時間轉為UTC時間
* @param string locTime utc時間字串 格式 :'Y-m-d H:i:s'
* @return string 本地時間字串 格式 :'Y-m-d H:i:s'
*/
function localToUtc(locTime) {
if(locTime==='0000-00-00 00:00:00' || locTime==='0000-00-00' || locTime===null || locTime==='' || locTime===undefined)
return locTime;
var tmpTime = new Date();
var utcTime = new Date();
locTime=locTime.replace("-", "/").replace("-", "/"); //Firefox不相容'-'分隔日期
//解析字串
tmpTime.setTime(Date.parse(locTime));
if(locTime.length>10) {
var year = tmpTime.getUTCFullYear();
var month = preZero(tmpTime.getUTCMonth()+1);
var date = preZero(tmpTime.getUTCDate());
var hour = preZero(tmpTime.getUTCHours());
var minute = preZero(tmpTime.getUTCMinutes());
var second = preZero(tmpTime.getUTCSeconds());
return year+'-'+month+'-'+date +' '+hour+':'+minute+':'+second;
} else {
//設定日期,保留本地時間(供UTC轉換用)
utcTime.setFullYear(tmpTime.getFullYear());
utcTime.setMonth(tmpTime.getMonth());utcTime.setMonth(tmpTime.getMonth());//?若不重複,則賦值無效
utcTime.setDate(tmpTime.getDate());
var year = utcTime.getUTCFullYear();
var month = preZero(utcTime.getUTCMonth()+1);
var date = preZero(utcTime.getUTCDate());
return year+'-'+month+'-'+date;
}
}
//單個數字添加前置0
function preZero(str) {
return str.toString().length<2 ? '0'+str : str;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.