2010-10-29 137 views
1

我需要從codeigniter中的時區數據中獲取時區偏移值。我有時區是UM12,UM11,.... UTC .... UP10 UP11 UP12 .....我需要精確的偏移值。有沒有直接的方法?codeigniter獲取時區偏移

回答

2

$ this-> load-> helper('date');

echo timezone('UM10'); // will give -10 

,或者嘗試

print_r(timezone()); // List the entire timezone array 

希望這將幫助;)

+0

感謝@vimal .... – 2010-10-29 10:07:51