To know all the Time Zone abbreviation list, use below mention function:
<?php
echo '<br /><pre>';
echo count(timezone_abbreviations_list());
echo '<br />';
print_r(timezone_abbreviations_list());
echo '</pre>';
?>
It will give you some idea about timezone and its difference.
Thanks
timezone_abbreviations_list
(PHP 5 >= 5.1.0)
timezone_abbreviations_list — Alias of DateTimeZone::listAbbreviations
Description
This function is an alias of: DateTimeZone::listAbbreviations
timezone_abbreviations_list
adityabhai at gmail dot com
23-Jul-2009 02:43
23-Jul-2009 02:43
adityabhai at gmail dot com
23-Jul-2009 02:43
23-Jul-2009 02:43
To know all the Time Zone abbreviation list, use below mention function:
<?php
echo '<br /><pre>';
echo count(timezone_abbreviations_list());
echo '<br />';
print_r(timezone_abbreviations_list());
echo '</pre>';
?>
It will give you some idea about timezone and its difference.
Thanks
Chris Danielson
02-Oct-2008 12:46
02-Oct-2008 12:46
The mention of using 'US/Pacific-New' is actually a deprecated process.
See here: http://us.php.net/manual/en/timezones.others.php
Where it is described:
Please do not use any of the timezones listed here (besides UTC), they only exist for backward compatible reasons.
drizzt321 at gmail dot com
21-Aug-2008 12:54
21-Aug-2008 12:54
If anyone is confused about the US/Pacific-New that appears in the list, apparently it has something to do with a bill that was that was passed by the House in 1989, but never signed into law. It has to do with delaying the switchover until after the election. Read more about it at http://catless.ncl.ac.uk/Risks/13.87.html and it should be the first posting. Or just do a search for US/Pacific-New.
