Time Zones - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T01:51:04Zhttp://stackoverflow.com/feeds/question/709350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/709350/time-zones2Time Zonesjimktrains2009-04-02T11:35:13Z2009-04-02T15:35:18Z
<p>I know this isn't specific to PHP, but what's the point of using timezones listed like this :<a href="http://us2.php.net/manual/en/timezones.america.php" rel="nofollow">http://us2.php.net/manual/en/timezones.america.php</a>? For example "America/Indianapolis" and "America/New_York". What is the problem with EST, EDT, CST, CDT, &c?</p>
http://stackoverflow.com/questions/709350/time-zones/709353#7093530Answer by Apikot for Time ZonesApikot2009-04-02T11:37:40Z2009-04-02T11:37:40Z<p><a href="http://us2.php.net/date_default_timezone_set" rel="nofollow">http://us2.php.net/date_default_timezone_set</a></p>
<p>Quote from page: Note: Since PHP 5.1.0 (when the date/time functions were rewritten), every call to a date/time function will generate a E_NOTICE if the timezone isn't valid, and/or a E_STRICT message if using the system settings or the TZ environment variable. </p>
http://stackoverflow.com/questions/709350/time-zones/709359#7093590Answer by DrJokepu for Time ZonesDrJokepu2009-04-02T11:38:53Z2009-04-02T11:38:53Z<p>Time zones or daylight savings time start/end dates of cities might change (it did occur in the past) but the cities are likely to remain at the same location.</p>
http://stackoverflow.com/questions/709350/time-zones/709361#7093613Answer by Andrew Hare for Time ZonesAndrew Hare2009-04-02T11:39:39Z2009-04-02T11:39:39Z<p>This is just a <a href="http://en.wikipedia.org/wiki/List%5Fof%5Ftz%5Fzones%5Fby%5Fname" rel="nofollow">different timezone format</a> provided by the <a href="http://en.wikipedia.org/wiki/Zoneinfo" rel="nofollow">Zoneinfo database</a>:</p>
<blockquote>
<p>The time zones in the database are
given uniform names, such as
“America/New_York”, in an attempt to
make them easier to understand by
humans and to remove ambiguity.</p>
</blockquote>
http://stackoverflow.com/questions/709350/time-zones/709510#7095103Answer by vartec for Time Zonesvartec2009-04-02T12:27:27Z2009-04-02T12:53:52Z<p><code>'America/New_York'</code> doesn't depend on the date. While <code>EST</code> is only valid in winter, while in summer you have to change it to <code>EDT</code>. Other problem with 3 letter codes is, that there are conflicts. <code>EST</code> means Eastern Standard Time, but it might be in America or Australia. </p>
http://stackoverflow.com/questions/709350/time-zones/710252#7102520Answer by geetee for Time Zonesgeetee2009-04-02T15:35:18Z2009-04-02T15:35:18Z<p>All regions within a timezone don't follow the same rules. For example, Arizona does not observe Daylight Saving Time.</p>