active questions tagged utc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T04:15:49Zhttp://stackoverflow.com/feeds/tag/utchttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852465/how-to-determine-utc-offset-from-server-timezone0How to determine UTC offset from server timezone?Vittorio Vittori2009-12-05T15:26:10Z2009-12-05T15:39:05Z
<p>I've found many examples about UTC tables and php date methods to convert it, but I still miss a simple way after got server date, to converting it into an user timezone selection on my web page.<br/></p>
<p>On this page <a href="http://vkham.com/UTC.html" rel="nofollow">http://vkham.com/UTC.html</a> I've found a clear guide to understand the range, but I don't know how to connect for example "Europe/Rome" on the table, so there is something more clear about it?<br/></p>
<p>I know the timezone of my server (America/Chicago) but I still don't know a way to change it from UTC method to a different timezone selected from the user machine (for example "Europe/Rome")</p>
<p>I tryied something, but I'still miss something, and i don't know what is it:</p>
<pre><code><?php
$timezone = date ("e");
$date = date ('Y-m-d H:i:s');
print $date." - this is my server date, and his timezone is - $timezone<br/>";
$user_timezone = "Europe/Rome"; // there is a way to convert Europe/Rome to UTC -13?
$selected_timezone = "-13"; // is -13 like Europe/Rome in all cases or only because my server is America/Chicago?
$date_user = date ("Y-m-d H:i:s $selected_timezone");
$str_date_user = strtotime ($date_user);
$new_user_date = date ('Y-m-d H:i:s', $str_date_user);
print $new_user_date . " - this is my server date, and his timezone is - $user_timezone";
?>
</code></pre>
<p>Doesn't exist a way to convert Europe/Rome to -13 for UTC timezone?<br/>
Is -13 like Europe/Rome in all cases or only because my server is America/Chicago?</p>
http://stackoverflow.com/questions/1786974/asp-net-mvc-overiding-default-getter-and-setters-for-linq-to-sql-for-doing-utc-c1Asp.net MVC overiding default getter and setters for linq to sql, for doing UTC conversionsoptician2009-11-24T00:08:58Z2009-12-04T05:47:03Z
<p>Hi All,</p>
<p>I'm getting to a point with my app where I'm about to try to roll out utc support.</p>
<p>I've already got it all working and have written myself two utility classes, called convertToUtc and convertFromUtc. I think you can guess what they do.</p>
<p>What I was thinking though, could I build these into the getter and setter methods for my date property on the linq-to-sql created object model, or should I just go round the app everywhere re assigning how the value is saved (adding an extra line to the controller like</p>
<pre><code>task.taskDeadline = Utility.ConvertToUtc(aspnet_Repository.GetUserGuid(User.Identity.Name), task.taskDeadline.Value);
</code></pre>
<p>If anyone can tell me I'm doing something horrible by going back to the db each time I need the user Guid, that would be cool. I guess down the line somewhere I would cache it, but this would require holding it in session or something I presume.</p>
<p>Thanks all.</p>
http://stackoverflow.com/questions/1820915/how-can-i-format-datetime-to-web-utc-format0How can I format DateTime to web UTC format?Grzenio2009-11-30T16:40:14Z2009-11-30T16:52:20Z
<p>Hi,</p>
<p>I have a DateTime which I want to format to "2009-09-01T00:00:00.000Z", but the following code gives me "2009-09-01T00:00:00.000+01:00" (both lines):</p>
<pre><code>Console.Out.WriteLine(new DateTime(2009, 9, 1, 0, 0, 0, 0, DateTimeKind.Utc).ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffzzz"));
Console.Out.WriteLine(new DateTime(2009, 9, 1, 0, 0, 0, 0, DateTimeKind.Utc).ToUniversalTime().ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffzzz"));
</code></pre>
<p>Any ideas how to make it work?</p>
http://stackoverflow.com/questions/1597754/convert-utc-string-to-tdatetime-in-delphi0Convert UTC string to TDatetime in DelphiIrwan2009-10-20T22:54:07Z2009-11-25T21:28:50Z
<p>eg.
var tm : string;
dt : tdatetime;</p>
<p>tm := '2009-08-21T09:11:21Z';
dt := ?</p>
<p>I know I can parse it manually but I wonder if there is built-in function or win32 api function to do this ?</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/1263455/nil-nsdate-when-trying-to-get-date-from-utc-string-in-zulu-time0Nil NSDate when trying to get date from UTC string in zulu timeEric Freese2009-08-11T23:02:44Z2009-11-21T20:31:27Z
<p>Writing an iPhone app in Objective-C, I have a date in string form (in UTC format, with a Z on the end to denote zero UTC offset, or zulu time), which I need to parse into an <code>NSDate</code> object.<br><br>
A bit of code:
<pre><code>NSDateFormatter* df = [[NSDateFormatter alloc]init];
[df setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSSZ"];
NSString* str = @"2009-08-11T06:00:00.000Z";
NSDate* date = [df dateFromString:str];</pre></code>
Running this through the debugger, <code>date</code> ends up <code>nil</code>! I'm assuming it has something to do with my date format string.<br><br>How can I fix it to correctly parse the date string?<br><br>
A thought would be to make the <code>Z</code> in the date format literal, a la setting the date format to <code>yyyy-MM-dd'T'HH:mm:ss.SSS'Z'</code>.<br><br>
That would work, except when the Z is parsed as a literal, the date loses offset information, and so is ambiguous, and therefore interpreted to be local time.<br><br>
For example, if the string to parse was 2009-08-11T06:00:00.000Z (6:00 zulu time) it would be interpreted as 6:00 local time, and an incorrect offset would then be applied. It would then be parsed as 2009-08-11T06:00:00.000-600 (12:00 zulu time) with the offset depending on the user's offset.<br><br>
Thanks!</p>
http://stackoverflow.com/questions/1770747/c-define-begin-of-day-of-a-date-in-another-timezone0C# Define begin of day of a date in another timezoneunknown (google)2009-11-20T14:24:12Z2009-11-20T14:34:49Z
<p>Hi,</p>
<p>I want to define the begin of a day in another timezone with .NET/C#.</p>
<p>Example:
My current timezone = GMT+1
so DateTime.Today returns 19/11/2009 23:00 UTC</p>
<p>but actually I want to get the DateTime.Today for timezone GMT+2 which would be 19/11/2009 22:00 UTC.</p>
<p>How do I do this without juggling with offsets & daylightsaving calculations?</p>
http://stackoverflow.com/questions/1764710/converting-string-containing-localtime-into-utc-in-c0Converting string containing localtime into UTC in Ccodebox_rob2009-11-19T16:42:18Z2009-11-20T08:49:35Z
<p>I have a string containing a local date/time and I need to convert it to a time_t value (in UTC) - I've been trying this:</p>
<pre><code>char* date = "2009/09/01/00";
struct tm cal = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL};
strptime(date, "%Y/%m/%d/%H", &cal);
time_t t = mktime(&cal);
</code></pre>
<p>but the time_t value I get back is the value that I would expect if the string was being parsed as UTC not local time. Maybe I have misunderstood what strptime is supposed to do, but in my timezone (UK) on the 1st September we are using BST (ie UTC + 1 hour) so I would expect the value I end up with to be 1 hour ahead of UTC.</p>
<p>Is there a way to interpret the string as localtime, automatically taking into account the UTC offset that would have been in effect on that date? Note that I need the time_t value not a struct tm, in the example above I want the time_t value to correspond to 2009-09-01 01:00:00 GMT</p>
http://stackoverflow.com/questions/1766226/convert-a-summer-date-to-utc-in-the-winter0Convert a summer date to utc in the winter?Andomar2009-11-19T20:18:22Z2009-11-19T23:20:10Z
<p>The function <code>mktime</code> takes a <code>struct tm</code> as argument. One of the members of <code>struct tm</code> is <code>tm_isdst</code>. You can set this to 1 for wintertime, 0 for summertime, or -1 if you don't know.</p>
<p>However, if during winter, you try to convert <code>2009-09-01 00:00</code>, <code>mktime</code> fails to see that although it is currently winter, the date you are converting is summertime. So the result is one hour off. For me (GMT+1) it's <code>2009-08-31 22:00</code>, while it should be <code>23:00</code>.</p>
<p>Is there a way to determine if a particular date is in the summer or wintertime period? Is it possible to convert a summer date to utc in the winter?</p>
<p>(I hit upon this problem trying to answer <a href="http://stackoverflow.com/questions/1764710/converting-string-containing-localtime-into-utc-in-c">this question</a>)</p>
http://stackoverflow.com/questions/1760608/how-to-get-current-utc-time-in-json-format-using-javascript0How to get current UTC time in JSON format using Javascript?Sakthi2009-11-19T03:00:33Z2009-11-19T05:29:48Z
<p>Hello,</p>
<p>I have a JSON Date for example: "\/Date(1258529233000)\/"</p>
<p>I got below code to convert this JSON date to UTC Date in String Format.</p>
<pre><code>var s = "\\/Date(1258529233000)\\/";
s = s.slice(7, 20);
var n = parseInt(s);
var d = new Date(n);
alert(d.toString());
</code></pre>
<p>Now I need to get current UTC Date with Time and convert it into JSON date format.</p>
<p>Then do a date difference between these two dates and get number of minutes difference.</p>
<p>Can someone help me with this?</p>
http://stackoverflow.com/questions/1745436/how-to-manage-timezones-in-a-web-application2How to manage timezones in a web application?segaco2009-11-16T23:04:46Z2009-11-16T23:24:51Z
<p>Hi, I wan't to manage the different timezones of my users in my web application, but I have no idea where to start. I have to save the local time of each user in my database?, or maybe make the conversion to a UTC time, save it, and then make the conversion again to show it?, or there is another way? For example, if one of my users make an appointment in his local time, I have to convert it to UTC store it in my database, and then when he need it, convert it again to his local time an show it?? By the way, I'm using Django. Thanks.</p>
http://stackoverflow.com/questions/947299/how-do-i-make-mysqls-now-and-curdate-functions-use-utc0How do I make MySQL's NOW() and CURDATE() functions use UTC?Chad Johnson2009-06-03T21:15:37Z2009-11-15T13:00:02Z
<p>I want to make it so calls to NOW() and CURDATE() in MySQL queries return the date in UTC. How do I make this happen without going through and changing all queries that use these functions?</p>
<p>Believe, me, I have been Googling for the answer, but in 20 minutes, I have found nothing that has worked.</p>
http://stackoverflow.com/questions/1728264/why-does-java-return-a-date-in-gmt-4-5-when-choosing-co-ordinated-universal-time0Why does Java return a date in GMT-4.5 when choosing Co-ordinated Universal Time time zone in Windows?simonn2009-11-13T09:55:27Z2009-11-13T11:08:40Z
<p>We have seen a strange issue on some Windows XP machines involving the "Co-ordinated Universal Time" time zone. Not all Windows XP machines seem to have it, but on those that do, the following simple Java program</p>
<pre><code>public class TimeTest {
public static void main(String[] args) {
System.out.println(java.util.TimeZone.getDefault());
System.out.println(new java.util.Date());
}
}
</code></pre>
<p>on JDK 1.6.0_06 prints:</p>
<pre>
sun.util.calendar.ZoneInfo[id="America/Caracas",offset=-16200000,dstSavings=0,useDaylight=false,transitions=5,lastRule=null]
Fri Nov 13 05:34:14 VET 2009
</pre>
<p>(i.e. 4 and a half hours behind GMT). I should add that I am based in London, and have never been to South America. :-)</p>
<p>My questions are:</p>
<ul>
<li>Where does Java get this time zone from? I thought Co-ordinated Universal Time was supposed to be the new name for GMT.</li>
<li>Why do some Windows machines have this time zone but not others?</li>
</ul>
http://stackoverflow.com/questions/1727077/generating-a-drop-down-list-of-timezones-with-php0Generating a drop down list of timezones with PHPXeoncross2009-11-13T04:07:28Z2009-11-13T04:37:35Z
<p>Most sites need some way to show the dates on the site in the users preferred timezone. Below are <a href="http://www.phpbb.com" rel="nofollow">two lists</a> that <a href="http://www.aviblock.com/blog/2009/03/12/presenting-a-list-of-timezones-to-the-user/" rel="nofollow">I found and</a> then one method <a href="http://us.php.net/manual/en/function.date-default-timezone-set.php#84459" rel="nofollow">using the built in PHP DateTime</a> class in PHP 5. </p>
<p>I need help knowing which of these would be the best to attempt to use when trying to get the UTC offset from the user on register.</p>
<p>One:</p>
<pre><code><option value="-12">[UTC - 12] Baker Island Time</option>
<option value="-11">[UTC - 11] Niue Time, Samoa Standard Time</option>
<option value="-10">[UTC - 10] Hawaii-Aleutian Standard Time, Cook Island Time</option>
<option value="-9.5">[UTC - 9:30] Marquesas Islands Time</option>
<option value="-9">[UTC - 9] Alaska Standard Time, Gambier Island Time</option>
<option value="-8">[UTC - 8] Pacific Standard Time</option>
<option value="-7">[UTC - 7] Mountain Standard Time</option>
<option value="-6">[UTC - 6] Central Standard Time</option>
<option value="-5">[UTC - 5] Eastern Standard Time</option>
<option value="-4.5">[UTC - 4:30] Venezuelan Standard Time</option>
<option value="-4">[UTC - 4] Atlantic Standard Time</option>
<option value="-3.5">[UTC - 3:30] Newfoundland Standard Time</option>
<option value="-3">[UTC - 3] Amazon Standard Time, Central Greenland Time</option>
<option value="-2">[UTC - 2] Fernando de Noronha Time, South Georgia &amp; the South Sandwich Islands Time</option>
<option value="-1">[UTC - 1] Azores Standard Time, Cape Verde Time, Eastern Greenland Time</option>
<option value="0" selected="selected">[UTC] Western European Time, Greenwich Mean Time</option>
<option value="1">[UTC + 1] Central European Time, West African Time</option>
<option value="2">[UTC + 2] Eastern European Time, Central African Time</option>
<option value="3">[UTC + 3] Moscow Standard Time, Eastern African Time</option>
<option value="3.5">[UTC + 3:30] Iran Standard Time</option>
<option value="4">[UTC + 4] Gulf Standard Time, Samara Standard Time</option>
<option value="4.5">[UTC + 4:30] Afghanistan Time</option>
<option value="5">[UTC + 5] Pakistan Standard Time, Yekaterinburg Standard Time</option>
<option value="5.5">[UTC + 5:30] Indian Standard Time, Sri Lanka Time</option>
<option value="5.75">[UTC + 5:45] Nepal Time</option>
<option value="6">[UTC + 6] Bangladesh Time, Bhutan Time, Novosibirsk Standard Time</option>
<option value="6.5">[UTC + 6:30] Cocos Islands Time, Myanmar Time</option>
<option value="7">[UTC + 7] Indochina Time, Krasnoyarsk Standard Time</option>
<option value="8">[UTC + 8] Chinese Standard Time, Australian Western Standard Time, Irkutsk Standard Time</option>
<option value="8.75">[UTC + 8:45] Southeastern Western Australia Standard Time</option>
<option value="9">[UTC + 9] Japan Standard Time, Korea Standard Time, Chita Standard Time</option>
<option value="9.5">[UTC + 9:30] Australian Central Standard Time</option>
<option value="10">[UTC + 10] Australian Eastern Standard Time, Vladivostok Standard Time</option>
<option value="10.5">[UTC + 10:30] Lord Howe Standard Time</option>
<option value="11">[UTC + 11] Solomon Island Time, Magadan Standard Time</option>
<option value="11.5">[UTC + 11:30] Norfolk Island Time</option>
<option value="12">[UTC + 12] New Zealand Time, Fiji Time, Kamchatka Standard Time</option>
<option value="12.75">[UTC + 12:45] Chatham Islands Time</option>
<option value="13">[UTC + 13] Tonga Time, Phoenix Islands Time</option>
<option value="14">[UTC + 14] Line Island Time</option>
</code></pre>
<p>Or using PHP friendly values:</p>
<pre><code><option value="Pacific/Midway">(GMT-11:00) Midway Island, Samoa</option>
<option value="America/Adak">(GMT-10:00) Hawaii-Aleutian</option>
<option value="Etc/GMT+10">(GMT-10:00) Hawaii</option>
<option value="Pacific/Marquesas">(GMT-09:30) Marquesas Islands</option>
<option value="Pacific/Gambier">(GMT-09:00) Gambier Islands</option>
<option value="America/Anchorage">(GMT-09:00) Alaska</option>
<option value="America/Ensenada">(GMT-08:00) Tijuana, Baja California</option>
<option value="Etc/GMT+8">(GMT-08:00) Pitcairn Islands</option>
<option value="America/Los_Angeles">(GMT-08:00) Pacific Time (US & Canada)</option>
<option value="America/Denver">(GMT-07:00) Mountain Time (US & Canada)</option>
<option value="America/Chihuahua">(GMT-07:00) Chihuahua, La Paz, Mazatlan</option>
<option value="America/Dawson_Creek">(GMT-07:00) Arizona</option>
<option value="America/Belize">(GMT-06:00) Saskatchewan, Central America</option>
<option value="America/Cancun">(GMT-06:00) Guadalajara, Mexico City, Monterrey</option>
<option value="Chile/EasterIsland">(GMT-06:00) Easter Island</option>
<option value="America/Chicago">(GMT-06:00) Central Time (US & Canada)</option>
<option value="America/New_York">(GMT-05:00) Eastern Time (US & Canada)</option>
<option value="America/Havana">(GMT-05:00) Cuba</option>
<option value="America/Bogota">(GMT-05:00) Bogota, Lima, Quito, Rio Branco</option>
<option value="America/Caracas">(GMT-04:30) Caracas</option>
<option value="America/Santiago">(GMT-04:00) Santiago</option>
<option value="America/La_Paz">(GMT-04:00) La Paz</option>
<option value="Atlantic/Stanley">(GMT-04:00) Faukland Islands</option>
<option value="America/Campo_Grande">(GMT-04:00) Brazil</option>
<option value="America/Goose_Bay">(GMT-04:00) Atlantic Time (Goose Bay)</option>
<option value="America/Glace_Bay">(GMT-04:00) Atlantic Time (Canada)</option>
<option value="America/St_Johns">(GMT-03:30) Newfoundland</option>
<option value="America/Araguaina">(GMT-03:00) UTC-3</option>
<option value="America/Montevideo">(GMT-03:00) Montevideo</option>
<option value="America/Miquelon">(GMT-03:00) Miquelon, St. Pierre</option>
<option value="America/Godthab">(GMT-03:00) Greenland</option>
<option value="America/Argentina/Buenos_Aires">(GMT-03:00) Buenos Aires</option>
<option value="America/Sao_Paulo">(GMT-03:00) Brasilia</option>
<option value="America/Noronha">(GMT-02:00) Mid-Atlantic</option>
<option value="Atlantic/Cape_Verde">(GMT-01:00) Cape Verde Is.</option>
<option value="Atlantic/Azores">(GMT-01:00) Azores</option>
<option value="Europe/Belfast">(GMT) Greenwich Mean Time : Belfast</option>
<option value="Europe/Dublin">(GMT) Greenwich Mean Time : Dublin</option>
<option value="Europe/Lisbon">(GMT) Greenwich Mean Time : Lisbon</option>
<option value="Europe/London">(GMT) Greenwich Mean Time : London</option>
<option value="Africa/Abidjan">(GMT) Monrovia, Reykjavik</option>
<option value="Europe/Amsterdam">(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna</option>
<option value="Europe/Belgrade">(GMT+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague</option>
<option value="Europe/Brussels">(GMT+01:00) Brussels, Copenhagen, Madrid, Paris</option>
<option value="Africa/Algiers">(GMT+01:00) West Central Africa</option>
<option value="Africa/Windhoek">(GMT+01:00) Windhoek</option>
<option value="Asia/Beirut">(GMT+02:00) Beirut</option>
<option value="Africa/Cairo">(GMT+02:00) Cairo</option>
<option value="Asia/Gaza">(GMT+02:00) Gaza</option>
<option value="Africa/Blantyre">(GMT+02:00) Harare, Pretoria</option>
<option value="Asia/Jerusalem">(GMT+02:00) Jerusalem</option>
<option value="Europe/Minsk">(GMT+02:00) Minsk</option>
<option value="Asia/Damascus">(GMT+02:00) Syria</option>
<option value="Europe/Moscow">(GMT+03:00) Moscow, St. Petersburg, Volgograd</option>
<option value="Africa/Addis_Ababa">(GMT+03:00) Nairobi</option>
<option value="Asia/Tehran">(GMT+03:30) Tehran</option>
<option value="Asia/Dubai">(GMT+04:00) Abu Dhabi, Muscat</option>
<option value="Asia/Yerevan">(GMT+04:00) Yerevan</option>
<option value="Asia/Kabul">(GMT+04:30) Kabul</option>
<option value="Asia/Yekaterinburg">(GMT+05:00) Ekaterinburg</option>
<option value="Asia/Tashkent">(GMT+05:00) Tashkent</option>
<option value="Asia/Kolkata">(GMT+05:30) Chennai, Kolkata, Mumbai, New Delhi</option>
<option value="Asia/Katmandu">(GMT+05:45) Kathmandu</option>
<option value="Asia/Dhaka">(GMT+06:00) Astana, Dhaka</option>
<option value="Asia/Novosibirsk">(GMT+06:00) Novosibirsk</option>
<option value="Asia/Rangoon">(GMT+06:30) Yangon (Rangoon)</option>
<option value="Asia/Bangkok">(GMT+07:00) Bangkok, Hanoi, Jakarta</option>
<option value="Asia/Krasnoyarsk">(GMT+07:00) Krasnoyarsk</option>
<option value="Asia/Hong_Kong">(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi</option>
<option value="Asia/Irkutsk">(GMT+08:00) Irkutsk, Ulaan Bataar</option>
<option value="Australia/Perth">(GMT+08:00) Perth</option>
<option value="Australia/Eucla">(GMT+08:45) Eucla</option>
<option value="Asia/Tokyo">(GMT+09:00) Osaka, Sapporo, Tokyo</option>
<option value="Asia/Seoul">(GMT+09:00) Seoul</option>
<option value="Asia/Yakutsk">(GMT+09:00) Yakutsk</option>
<option value="Australia/Adelaide">(GMT+09:30) Adelaide</option>
<option value="Australia/Darwin">(GMT+09:30) Darwin</option>
<option value="Australia/Brisbane">(GMT+10:00) Brisbane</option>
<option value="Australia/Hobart">(GMT+10:00) Hobart</option>
<option value="Asia/Vladivostok">(GMT+10:00) Vladivostok</option>
<option value="Australia/Lord_Howe">(GMT+10:30) Lord Howe Island</option>
<option value="Etc/GMT-11">(GMT+11:00) Solomon Is., New Caledonia</option>
<option value="Asia/Magadan">(GMT+11:00) Magadan</option>
<option value="Pacific/Norfolk">(GMT+11:30) Norfolk Island</option>
<option value="Asia/Anadyr">(GMT+12:00) Anadyr, Kamchatka</option>
<option value="Pacific/Auckland">(GMT+12:00) Auckland, Wellington</option>
<option value="Etc/GMT-12">(GMT+12:00) Fiji, Kamchatka, Marshall Is.</option>
<option value="Pacific/Chatham">(GMT+12:45) Chatham Islands</option>
<option value="Pacific/Tongatapu">(GMT+13:00) Nuku'alofa</option>
<option value="Pacific/Kiritimati">(GMT+14:00) Kiritimati</option>
</code></pre>
<p>Or just using PHP it's self</p>
<pre><code>$timezones = DateTimeZone::listAbbreviations();
$cities = array();
foreach( $timezones as $key => $zones )
{
foreach( $zones as $id => $zone )
{
/**
* Only get timezones explicitely not part of "Others".
* @see http://www.php.net/manual/en/timezones.others.php
*/
if ( preg_match( '/^(America|Antartica|Arctic|Asia|Atlantic|Europe|Indian|Pacific)\//', $zone['timezone_id'] )
&& $zone['timezone_id']) {
$cities[$zone['timezone_id']][] = $key;
}
}
}
// For each city, have a comma separated list of all possible timezones for that city.
foreach( $cities as $key => $value )
$cities[$key] = join( ', ', $value);
// Only keep one city (the first and also most important) for each set of possibilities.
$cities = array_unique( $cities );
// Sort by area/city name.
ksort( $cities );
</code></pre>
<p>It seems like the last one would be the safest as it would grow with the PHP release being used. You could also flip that array around when needed to tie timezones to city names.</p>
http://stackoverflow.com/questions/1718881/log-parser-2-2-skipping-todays-iis-logs0Log Parser 2.2 skipping today's IIS logsJacob2009-11-11T23:46:23Z2009-11-12T18:46:55Z
<p>I'm trying to count the number of hits for a particular URL on our web site by parsing our IIS logs using Log Parser 2.2. Everything seems to be working fine, except that its handling of timestamps is greatly confusing me.</p>
<p>The IIS logs have all of the timestamps expressed in UTC time. Therefore, in my application, I convert the server's time to UTC before plugging it into the query. However, when I try to query for the current day's data, I get back a zero count, despite me seeing the records in the log file. The generated query I try to run to get everything within the current day looks something like this (the query is run on 11/11/2009, and I'm using Arizona time):</p>
<pre><code>SELECT COUNT(*)
FROM \\Server\IIS Logs\LogFiles\W3SVC1\u_ex*.log
WHERE
cs-method = 'GET'
AND cs(Referer) NOT LIKE '%ntorus%'
AND c-ip NOT LIKE '192%'
AND c-ip NOT LIKE '127%'
AND (
cs-uri-stem = '/'
OR cs-uri-stem = '/myurl')
AND sc-status BETWEEN 200 AND 299
AND date BETWEEN
TIMESTAMP('2009-11-11 07:00', 'yyyy-MM-dd hh:mm')
AND TIMESTAMP('2009-11-12 07:00', 'yyyy-MM-dd hh:mm')
</code></pre>
<p>It looks like for some reason the current day's data is getting skipped. When querying earlier dates, I get back data just fine. Why is this happening?</p>
http://stackoverflow.com/questions/1599060/how-can-i-get-an-accurate-utc-time-with-python1How can I get an accurate UTC time with Python?tj99912009-10-21T06:34:31Z2009-11-11T14:29:05Z
<p>I wrote a desktop application and was using <code>datetime.datetime.utcnow()</code> for timestamping, however I've recently noticed that some people using the application get wildly different results than I do when we run the program at the same time. Is there any way to get the UTC time locally without using urllib to fetch it from a website?</p>
http://stackoverflow.com/questions/1704780/what-is-the-difference-between-datetime-touniversaltime-and-timezoneinfo-convertt0What is the difference between DateTime.ToUniversalTime and TimeZoneInfo.ConvertTimeToUtcoptician2009-11-10T00:01:08Z2009-11-10T00:44:41Z
<p>Hi,</p>
<p>I'm just starting to think properly about rolling out a webapp that will need to do things to users at the start of their day, say 6am. Also at the end of their days.</p>
<p>Everywhere I've been reading about people saying a lot just to use .ToUniversalTime to store the time in UTC, but when I tried this (as I suspected) it didn't work, and it just moved the time about by an hour (I'm in the UK, so I thought this was to do with some offset from GMT to UTC, although that doesn't make sense to me, as day light saving should be off at the moment).</p>
<p>I have a field in the db that stores the users timezone, and so when I started using ConvertTimeToUtc and fromUtc , it started doing what I was expecting it to do. Although again I'm not sure if I have to build in some logic myself to do daylight saving conversions, or it should do it for me.</p>
<p>I am mainly wondering why everyone was talking about .ToUniversalTime, as it really didn't seem to help me, and I couldn't understand how it could possibly know how much to offset the time to shift it to UTC, whereas the second way made sense.</p>
<p>Could someone explain how each methods could be useful?</p>
http://stackoverflow.com/questions/1127781/is-there-ever-a-good-reason-to-store-time-not-in-utc1Is there ever a good reason to store time not in UTC?landon97202009-07-14T20:21:46Z2009-11-10T00:22:14Z
<p>I am wondering if there are any good reasons to ever store time information in anything other that UTC (GMT)? I believe that this is a solid rule for all software engineering. The conversion to local time is merely a translation that happens at the UI layer for display purposes. I have also seen cases where the translatation is needed in order to implement an algorithm correctly (for handling midnight date changes, etc.).</p>
http://stackoverflow.com/questions/1688554/cache-add-absolute-expiration-utc-based-or-not2Cache.Add absolute expiration - UTC based or not?Ruben Bartelink2009-11-06T16:06:38Z2009-11-08T01:22:07Z
<p>The examples for <a href="http://msdn.microsoft.com/en-us/library/system.web.caching.cache.add.aspx" rel="nofollow">Cache.Add</a> uses <code>DateTime.Now.Add</code> to compute the expiration, i.e. it passes:</p>
<pre><code> DateTime.Now.AddSeconds(60)
</code></pre>
<p>as the value of the <code>absoluteExpiration</code> parameter.</p>
<p>I'd have thought that computing it relative to <code>DateTime.UtcNow</code> would be more correct [as there is no ambiguity if Daylight Savings Time starts in the intervening time between now and the expiration point].</p>
<p>Before the introduction of <code>DateTimeKind</code>, I'd have guessed that there's some ugly hacks in the cache management to make it do something appropriate if the time was not a UTC time.</p>
<p>In .NET 2.0 and later, I'm guessing that it should handle a <code>DateTime</code> calculated as <code>DateTime.UtcNow.AddSeconds(60)</code> correctly given that it has <code>DateTime.Kind</code> to use as an input in its inferences.</p>
<p>I've been confidently using <code>DateTime.UtcNow</code> as the base for years, but wasnt able to come up with a rationale that this is definitely the correct thing to do in the absence of anything pointing out the documentation has been highly misleading for 4+ years.</p>
<p>The questions?</p>
<ol>
<li>Despite much bingage and googling I wasnt able to find any authoritative discussion on this from MS - can anyone locate something regarding this?</li>
<li>Is there any reason why using UtcNow wouldnt be more correct and/or safe?</li>
</ol>
<p>(Yes, I could peruse the source and/or the Reflector'd source, but am looking for a full blow-by-blow lowdown!)</p>
http://stackoverflow.com/questions/1638579/how-to-determine-the-localtime-of-a-timestamp-for-different-timezones2How to determine the localtime of a timestamp for different timezones?Ghommey2009-10-28T16:53:39Z2009-11-04T11:36:27Z
<p>Hi all,</p>
<p>I got UTC timestamps and want to display them for different timezones.</p>
<p>Maybe an example can clarify what I am trying to do:</p>
<p>Given the timestamp <code>1259431620000</code> those times should be displayed:</p>
<blockquote>
<p>Atlanta 13:07</p>
<p>San Francisco 10:07</p>
<p>London 17:07</p>
<p>Sydney 04:07</p>
</blockquote>
<p>The cities might change but I guess you get what I am looking for.</p>
<p>Is there a javascript library or a common solution that deals with the daylight saving?</p>
<p>I all ready have a list of all the time zones.</p>
<p><strong>As the daylight saving is an easy and common problem I thought there might be a library or a script dealing with them.</strong> </p>
<p>Just in case you are interesting in the timezone table:</p>
<pre><code>* GMT -11:00
o Apia
o Midway
o Niue
o Pago Pago
* GMT -10:00
o Fakaofo
o Hawaii Time
o Johnston
o Rarotonga
o Tahiti
* GMT -09:00
o (GMT-09:30) Marquesas
o Alaska Time
o Gambier
* GMT -08:00
o Pacific Time
o Pacific Time - Tijuana
o Pacific Time - Vancouver
o Pacific Time - Whitehorse
o Pitcairn
* GMT -07:00
o Mountain Time - Dawson Creek
o Mountain Time (America/Denver)
o Mountain Time - Edmonton
o Mountain Time - Hermosillo
o Mountain Time - Chihuahua, Mazatlan
o Mountain Time - Arizona
o Mountain Time - Yellowknife
* GMT -06:00
o Belize
o Central Time
o Costa Rica
o El Salvador
o Guatemala
o Managua
o Central Time - Mexico City
o Central Time - Regina
o Central Time (America/Tegucigalpa)
o Central Time - Winnipeg
o Easter Island
o Galapagos
* GMT -05:00
o Bogota
o Cayman
o Grand Turk
o Guayaquil
o Havana
o Eastern Time - Iqaluit
o Jamaica
o Lima
o Eastern Time - Montreal
o Nassau
o Eastern Time
o Panama
o Port-au-Prince
o Eastern Time - Toronto
* GMT -04:00
o (GMT-04:30) Caracas
o Anguilla
o Antigua
o Aruba
o Asuncion
o Barbados
o Boa Vista
o Campo Grande
o Cuiaba
o Curacao
o Dominica
o Grenada
o Guadeloupe
o Guyana
o Atlantic Time - Halifax
o La Paz
o Manaus
o Martinique
o Montserrat
o Port of Spain
o Porto Velho
o Puerto Rico
o Rio Branco
o Santiago
o Santo Domingo
o St. Kitts
o St. Lucia
o St. Thomas
o St. Vincent
o Thule
o Tortola
o Palmer
o Bermuda
o Stanley
* GMT -03:00
o Newfoundland Time - St. Johns
o Araguaina
o Buenos Aires
o Salvador
o Belem
o Cayenne
o Fortaleza
o Godthab
o Maceio
o Miquelon
o Montevideo
o Paramaribo
o Recife
o Sao Paulo
o Rothera
* GMT -02:00
o Noronha
o South Georgia
* GMT -01:00
o Scoresbysund
o Azores
o Cape Verde
o Abidjan
* GMT 00:00
o Accra
o Bamako
o Banjul
o Bissau
o Casablanca
o Conakry
o Dakar
o El Aaiun
o Freetown
o Lome
o Monrovia
o Nouakchott
o Ouagadougou
o Sao Tome
o Danmarkshavn
o Canary Islands
o Faeroe
o Reykjavik
o St Helena
o GMT (no daylight saving)
o Dublin
o Lisbon
o London
* GMT +01:00
o Algiers
o Bangui
o Brazzaville
o Ceuta
o Douala
o Kinshasa
o Lagos
o Libreville
o Luanda
o Malabo
o Ndjamena
o Niamey
o Porto-Novo
o Tunis
o Windhoek
o Amsterdam
o Andorra
o Central European Time
o Berlin
o Brussels
o Budapest
o Copenhagen
o Gibraltar
o Luxembourg
o Madrid
o Malta
o Monaco
o Oslo
o Paris
o Rome
o Stockholm
o Tirane
o Vaduz
o Vienna
o Warsaw
o Zurich
* GMT +02:00
o Blantyre
o Bujumbura
o Cairo
o Gaborone
o Harare
o Johannesburg
o Kigali
o Lubumbashi
o Lusaka
o Maputo
o Maseru
o Mbabane
o Tripoli
o Amman
o Beirut
o Damascus
o Gaza
o Jerusalem
o Nicosia
o Athens
o Bucharest
o Chisinau
o Helsinki
o Istanbul
o Moscow-01 - Kaliningrad
o Kiev
o Minsk
o Riga
o Sofia
o Tallinn
o Vilnius
* GMT +03:00
o Addis Ababa
o Asmera
o Dar es Salaam
o Djibouti
o Kampala
o Khartoum
o Mogadishu
o Nairobi
o Syowa
o Aden
o Baghdad
o Bahrain
o Kuwait
o Qatar
o Riyadh
o Moscow+00
o Antananarivo
o Comoro
o Mayotte
o (GMT+03:30) Tehran
* GMT +04:00
o Baku
o Dubai
o Muscat
o Tbilisi
o Yerevan
o Moscow+01 - Samara
o Mahe
o Mauritius
o Reunion
o (GMT+04:30) Kabul
* GMT +05:00
o Aqtau
o Aqtobe
o Ashgabat
o Dushanbe
o Karachi
o Tashkent
o Moscow+02 - Yekaterinburg
o Kerguelen
o Maldives
o (GMT+05:30) India Standard Time
o (GMT+05:30) Colombo
o (GMT+05:45) Katmandu
* GMT +06:00
o Mawson
o Vostok
o Almaty
o Bishkek
o Dhaka
o Moscow+03 - Omsk, Novosibirsk
o Thimphu
o Chagos
o (GMT+06:30) Rangoon
o (GMT+06:30) Cocos
* GMT +07:00
o Davis
o Bangkok
o Hovd
o Jakarta
o Moscow+04 - Krasnoyarsk
o Phnom Penh
o Hanoi
o Vientiane
o Christmas
* GMT +08:00
o Casey
o Brunei
o Choibalsan
o Hong Kong
o Moscow+05 - Irkutsk
o Kuala Lumpur
o Macau
o Makassar
o Manila
o China Time - Beijing
o Singapore
o Taipei
o Ulaanbaatar
o Western Time - Perth
* GMT +09:00
o Dili
o Jayapura
o Pyongyang
o Seoul
o Tokyo
o Moscow+06 - Yakutsk
o Palau
o (GMT+09:30) Central Time - Adelaide
o (GMT+09:30) Central Time - Darwin
* GMT +10:00
o Dumont D'Urville
o Moscow+07 - Yuzhno-Sakhalinsk
o Eastern Time - Brisbane
o Eastern Time - Hobart
o Eastern Time - Melbourne, Sydney
o Guam
o Port Moresby
o Saipan
o Truk
* GMT +11:00
o Moscow+08 - Magadan
o Efate
o Guadalcanal
o Kosrae
o Noumea
o Ponape
o (GMT+11:30) Norfolk
* GMT +12:00
o Moscow+09 - Petropavlovsk-Kamchatskiy
o Auckland
o Fiji
o Funafuti
o Kwajalein
o Majuro
o Nauru
o Tarawa
o Wake
o Wallis
* GMT +13:00
o Enderbury
o Tongatapu
o Kiritimati
</code></pre>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1656155/timestamp-comparison-in-mysql-and-php-utc-0000-timezones0Timestamp comparison in MySQL and PHP ( UTC, +0000, Timezones )meder2009-11-01T02:01:29Z2009-11-01T03:58:40Z
<p>I'm trying to determine whether a string that represents the date and time, given in a JSON Twitter feed is within a range of timestamp columns in MySQL.</p>
<p>Here's the example string:</p>
<pre><code>'Sat, 31 Oct 2009 23:48:37 +0000',
</code></pre>
<p>The <code>+0000</code> according to the <a href="http://apiwiki.twitter.com/Return-Values" rel="nofollow">API</a> ( <code>created_at</code> ) indicates it is indeed <code>UTC</code>. Now, I'm using <code>strtotime</code> and <code>date</code> just to confirm the time. With:</p>
<pre><code>$t = 'Sat, 31 Oct 2009 23:48:37 +0000';
$timestamp = strtotime($t);
echo date('M d Y H:m:s', $timestamp);
</code></pre>
<p>I get <code>Oct 31 2009 19:10:37</code>. If I remove the <code>+0000</code> I get <code>Oct 31 2009 23:10:37</code>. So the difference between having <code>+0000</code> and not having it is 4 hours. I'm guessing because of my local timezone ( Maryland, USA = <code>America/New_York</code> ) and that differing from the UTC obviously. </p>
<p>I'm not quite sure if I should be stripping the <code>+0000</code> or using it when trying to determine if this timestamp is within the range of the two timestamps stored in my database, which are <code>2009-10-30 23:16:38</code> and <code>2009-11-25 12:00:00</code>. I feel silly and a bit confused now, when I populated these timestamps the YYYY-MM-DD H:M:S came from a Javascript date time picker, an example format is <code>10/31/2009 11:40 am</code> and I use STR_TO_DATE like so:</p>
<pre><code>STR_TO_DATE("10/31/2009 11:40 am", "%m/%d/%Y %l:%i %p")'),
</code></pre>
<p>Should I leave the <code>+0000</code> or strip it? <em>Mentally taps out</em></p>
http://stackoverflow.com/questions/1547133/rehydrating-fluent-nhibernate-configured-datetime-as-kind-utc-rather-than-unspeci1Rehydrating fluent nhibernate configured DateTime as Kind Utc rather than UnspecifiedArne Claassen2009-10-10T05:17:37Z2009-10-26T17:04:14Z
<p>Is there a way in fluent nhibernate to map a DateTime to rehydrate my entity with DateTime.Kind set to Utc rather than unspecified? I'm currently persisting a DateTime that is Utc, but the Kind coming back is always Unspecified, throwing off my time.</p>
http://stackoverflow.com/questions/1595047/convert-to-utc-timestamp1Convert to UTC Timestamp_bravado2009-10-20T14:32:35Z2009-10-21T07:44:44Z
<pre><code>//parses some string into that format.
datetime1 = datetime.strptime(somestring, "%Y-%m-%dT%H:%M:%S")
//gets the seconds from the above date.
timestamp1 = time.mktime(datetime1.timetuple())
//adds milliseconds to the above seconds.
timeInMillis = int(timestamp1) * 1000
</code></pre>
<p>How do I (at any point in that code) turn the date into UTC format? I've been ploughing through the API for what seems like a century and cannot find anything that I can get working. Can anyone help? It's currently turning it into Eastern time i believe (however I'm in GMT but want UTC).</p>
<p>EDIT: I gave the answer to the guy with the closest to what I finally found out.</p>
<pre><code>datetime1 = datetime.strptime(somestring, someformat)
timeInSeconds = calendar.timegm(datetime1.utctimetuple())
timeInMillis = timeInSeconds * 1000
</code></pre>
<p>:)</p>
http://stackoverflow.com/questions/1594097/javascript-conversion-of-yyyy-mm-dd-hhmmss-aa-help1javascript conversion of yyyy-mm-dd hh:mm:ss aa helpuday2009-10-20T11:59:40Z2009-10-20T12:52:46Z
<p>Hi, can anybody spot any mistake in this function? .. This is a function which receives a string of type yyyy-mm-dd hh:mm:ss aa and converts to UTC and builds up a string yyyy-mm-dd hh:mm:ss.</p>
<pre><code>function LocalTimetoUTC(localTime)
{
var time = localTime.split(" "); //Received :- yyyy-mm-dd hh:mm:ss aa
var yearday = time[0].split("-");
var dateTime = time[1].split(":");
var ampm = time[2];
var hours = 0;
var year = yearday[0];
var month = yearday[1]-1;
var day = yearday[2];
hours = dateTime[0];
var minutes = dateTime[1];
var seconds = dateTime[2];
/* We have to first convert it to 24 hour format
* 12:00:00 AM : 00:00:00
* 12:00:00 PM : 12:00:00
* Anytime other than 12
* 1:00:00 AM : 1:00:00
* 1:00:00 PM : 13:00:00
*/
if(ampm == "PM")
{
//If it is 12PM, adding 12 will create a problem
if(hours != 12)
{
hours +=12;
}
}
else //AM CASE
{
if(hours == 12)
{
hours = 00;
}
}
var now = new Date(year,month,day,hours,minutes,seconds);
var utcString = now.getUTCFullYear()+"-"
+(now.getUTCMonth()+1)+"-"+now.getUTCDate()+""
+now.getUTCHours()+":"+now.getUTCMinutes()+":"+now.getUTCSeconds();
return utcString;
}
</code></pre>
http://stackoverflow.com/questions/1379740/pytz-localize-vs-datetime-replace0pytz localize vs datetime replaceArt2009-09-04T14:50:11Z2009-10-20T06:40:10Z
<p>I'm having some weird issues with pytz's .localize() function. Sometimes it wouldn't make adjustments to the localized datetime:</p>
<p>.localize behaviour:</p>
<pre><code>>>> tz
<DstTzInfo 'Africa/Abidjan' LMT-1 day, 23:44:00 STD>
>>> d
datetime.datetime(2009, 9, 2, 14, 45, 42, 91421)
>>> tz.localize(d)
datetime.datetime(2009, 9, 2, 14, 45, 42, 91421,
tzinfo=<DstTzInfo 'Africa/Abidjan' GMT0:00:00 STD>)
>>> tz.normalize(tz.localize(d))
datetime.datetime(2009, 9, 2, 14, 45, 42, 91421,
tzinfo=<DstTzInfo 'Africa/Abidjan' GMT0:00:00 STD>)
</code></pre>
<p>As you can see, time has not been changed as a result of localize/normalize operations.
However, if .replace is used:</p>
<pre><code>>>> d.replace(tzinfo=tz)
datetime.datetime(2009, 9, 2, 14, 45, 42, 91421,
tzinfo=<DstTzInfo 'Africa/Abidjan' LMT-1 day, 23:44:00 STD>)
>>> tz.normalize(d.replace(tzinfo=tz))
datetime.datetime(2009, 9, 2, 15, 1, 42, 91421,
tzinfo=<DstTzInfo 'Africa/Abidjan' GMT0:00:00 STD>)
</code></pre>
<p>Which seems to make adjustments into datetime. </p>
<p>Question is - which is correct and why other's wrong?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1567388/boost-c-datetime-microsecclock-and-secondclock1Boost C++ date_time microsec_clock and second_clockLily2009-10-14T16:15:36Z2009-10-14T19:18:14Z
<p>I discovered a strange result in Boost C++ date time library. There is inconsistency between <code>microsec_clock</code> and <code>second_clock</code>, and I don't understand why is that. I am using Windows XP 32-bits</p>
<p>My snip of code:</p>
<pre><code>using namespace boost::posix_time;
...
ptime now = second_clock::universal_time();
std::cout << "Current Time is: "<< to_iso_extended_string(now)<< std::endl;
ptime now_2 = microsec_clock::universal_time();
std::cout << "Current Time is: "<< to_iso_extended_string(now_2)<< std::endl;
...
</code></pre>
<p>The print-out I expected are current time without miliseconds and with milliseonds. However, what I have in my pc is:</p>
<pre>
2009-10-14T16:07:38
1970-06-24T20:36:09.375890
</pre>
<p>I don't understand why there is a weired date (year 1970???) in my <code>microsec_clock</code> time. Related documentation for Boost: <a href="http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/date%5Ftime/posix%5Ftime.html#date%5Ftime.posix%5Ftime.ptime%5Fclass" rel="nofollow">link to boost date time</a></p>
<p>Newbie in Boost, any suggestion will help.</p>
<p>Lily</p>
http://stackoverflow.com/questions/179940/c-convert-utc-gmt-time-to-local-time3C# - Convert UTC/GMT time to local timenzpcmad2008-10-07T19:23:05Z2009-10-03T16:01:31Z
<p>We are developing a C# application for a web-service client. This will run on Windows XP PC's.</p>
<p>One of the fields returned by the web service is a DateTime field. The server returns a field in GMT format i.e. with a "Z" at the end.</p>
<p>However, we found that .NET seems to do some kind of implicit conversion and the time was always 12 hours out.</p>
<p>The following code sample resolves this to some extent in that the 12 hour difference has gone but it makes no allowance for NZ daylight saving.</p>
<pre><code>CultureInfo ci = new CultureInfo("en-NZ");
string date = "Web service date".ToString("R", ci);
DateTime convertedDate = DateTime.Parse(date);
</code></pre>
<p>As per <a href="http://www.timeanddate.com/worldclock/city.html?n=22" rel="nofollow">this date site</a>:</p>
<blockquote>
<p>UTC/GMT Offset </p>
<p>Standard time zone: UTC/GMT +12 hours <br />
Daylight saving time: +1 hour <br />
Current time zone offset: <strong>UTC/GMT +13 hours</strong> </p>
</blockquote>
<p>How do we adjust for the extra hour? Can this be done programmatically or is this some kind of setting on the PC's?</p>
http://stackoverflow.com/questions/1486476/javascript-json-strigify-changes-time-of-date-because-of-utc0Javascript: JSON Strigify changes time of date because of UTC!mark smith2009-09-28T11:03:33Z2009-09-28T18:18:49Z
<p>Hi,</p>
<p>can anyone help, my date object in javascript are always represented by UTC +2 because of where i am located. hence like this</p>
<pre><code> Mon Sep 28 10:00:00 UTC+0200 2009
</code></pre>
<p>Problem is doing a Json.stringify converts the above date to </p>
<pre><code> 2009-09-28T08:00:00Z (notice 2 hours missing i.e. 8 instead of 10)
</code></pre>
<p>What i need is for the date and time to be honoured but its not, hence it should be</p>
<pre><code> 2009-09-28T10:00:00Z (this is how it should be)
</code></pre>
<p>Basically i using this i.e</p>
<pre><code> var jsonData = JSON.stringify(jsonObject);
</code></pre>
<p>I tried passing a replacer parameter (second parameter on stringify) but the problem is that the value has already been processed.</p>
<p>I also tried using toString() and toUTCString() on the date object, but these don't give me what i want either..</p>
<p>Can anyon help me?</p>
http://stackoverflow.com/questions/535984/what-is-the-common-practice-with-regards-to-differentiating-between-utc-and-gmt4What is the common practice with regards to differentiating between UTC and GMT?Elijah2009-02-11T09:00:37Z2009-09-25T08:55:44Z
<p>I finally found out the <a href="http://en.wikipedia.org/wiki/Coordinated_Universal_Time" rel="nofollow">difference between UTC and GMT</a> by making the effort to look it up on Wikipedia today. Technically speaking it appears that GMT != UTC because you do not know if it is UTC or UT1 being referred to. However practically, people use the terms interchangeably to indicate the same timezone.</p>
<p>A while ago, I suggested that we change the user interface of one of my companies apps to display UTC instead of GMT.</p>
<p>Just to be sure that our database was not calculating the potential seconds difference between GMT and UTC, I ran the below query and verified that they both are just acting as aliases for the same timezone.</p>
<pre><code>select now() AT TIME ZONE 'GMT', now() AT TIME ZONE 'UTC';
timezone | timezone
----------------------------+----------------------------
2009-02-11 08:46:11.643032 | 2009-02-11 08:46:11.643032
(1 row)
</code></pre>
<p>What do you think? Do enough users out there understand UTC? Is it better to use the older but more common term? Or should I just do a UTC/GMT?</p>
http://stackoverflow.com/questions/1463912/how-to-i-accurately-get-current-utc-time-via-strtotime2How to I accurately get current UTC time via strtotime?Dave2009-09-23T04:14:14Z2009-09-23T12:31:51Z
<p>In PHP, how do I get the current time, in UTC, without hard coding knowledge of where my hosting provider is?</p>
<p>For example, I tried the following:</p>
<pre><code>time() + strtotime('January 1, 2000')-strtotime('January 1, 2000 UTC')
</code></pre>
<p>and find that it reports a time that is one hour ahead of actual UTC time. I tried this on two different hosting providers in two different time zones with the same results.</p>
<p>Is there a reliable (and, hopefully, cleaner) way to accurately get the UTC time?</p>
<p>I am limited to PHP 4.4.9 so I cannot use the new timezone stuff added to PHP5.</p>
<p>Thanks, in advance.</p>
http://stackoverflow.com/questions/79797/how-do-i-convert-local-time-to-utc-in-python9How do I convert local time to UTC in Python?Tom2008-09-17T03:52:42Z2009-09-23T06:28:23Z
<p>How do I convert a datetime string in local time to a string in UTC time?</p>
<p>I'm sure I've done this before, but can't find it and SO will hopefully help me (and others) do that in future.</p>
<p><strong>Clarification</strong>: For example, if I have "2008-09-17 14:02:00" in my local timezone (+10), I'd like to generate a string with the equivalent UTC time: "2008-09-17 04:02:00".</p>