Akhil K Nambiar
Akhil K Nambiar

Reputation: 3975

codeigniter get time zone offset

i need to get the timezone offset value from the timezone data in codeigniter. Timezones i have are UM12, UM11, .... UTC.... UP10 UP11 UP12..... i need exact offset values. is there any direct method?

Upvotes: 1

Views: 1265

Answers (1)

viMaL
viMaL

Reputation: 638

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

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

or try

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

Hope this will help ;)

Upvotes: 2

Related Questions