Time Zones - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T01:51:04Z http://stackoverflow.com/feeds/question/709350 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/709350/time-zones 2 Time Zones jimktrains 2009-04-02T11:35:13Z 2009-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, &amp;c?</p> http://stackoverflow.com/questions/709350/time-zones/709353#709353 0 Answer by Apikot for Time Zones Apikot 2009-04-02T11:37:40Z 2009-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#709359 0 Answer by DrJokepu for Time Zones DrJokepu 2009-04-02T11:38:53Z 2009-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#709361 3 Answer by Andrew Hare for Time Zones Andrew Hare 2009-04-02T11:39:39Z 2009-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#709510 3 Answer by vartec for Time Zones vartec 2009-04-02T12:27:27Z 2009-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#710252 0 Answer by geetee for Time Zones geetee 2009-04-02T15:35:18Z 2009-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>