I was looking at the php constants but not sure if I understand what it's used for yet
for example they have
timezone_abbreviations_list()
But doesn't seem to output anything I see as useful related to date()
Array
(
[0] => Array
(
[dst] => 1
[offset] => -14400
[timezone_id] => America/Porto_Acre
)
[1] => Array
(
[dst] => 1
[offset] => -14400
[timezone_id] => America/Eirunepe
)
[2] => Array
(
[dst] => 1
[offset] => -14400
[timezone_id] => America/Rio_Branco
)
[3] => Array
(
[dst] => 1
[offset] => -14400
[timezone_id] => Brazil/Acre
)
)
don't I need something like +/- XX hours from GMT
I could not find and explanation for offset and dst?
Does anyone know if anyone has made a SQL table for timezones?
It seems I could add it to my ZipCode table and then undate the user profiles.