Tagged Questions

UTC stands for Coordinated Universal Time - it is the time standard by which the world regulates clocks and time.

learn more… | top users | synonyms

48
votes
9answers
80k views

C# - Convert UTC/GMT time to local time

We are developing a C# application for a web-service client. This will run on Windows XP PC's. One of the fields returned by the web service is a DateTime field. The server returns a field in GMT ...
27
votes
6answers
17k views

How do you convert a JavaScript date to UTC?

Suppose a user of your website enters a date range. 2009-1-1 to 2009-1-3 You need to send this date to a server for some processing, but the server expects all dates and times to be in UTC. Now ...
27
votes
10answers
26k views

How do I convert local time to UTC in Python?

How do I convert a datetime string in local time to a string in UTC time? 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. ...
17
votes
3answers
6k views

objective-c setting NSDate to current UTC

is there an easy way to init an NSDate with the current UTC date/time?
13
votes
4answers
254 views

Timezone Strategy

I am building a MVC 3 application where the users may not be in the same time zone, so my intent was to store everything in UTC and convert from UTC to local time in the views and localtime to UTC on ...
11
votes
4answers
7k views

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
10
votes
3answers
3k views

Python - Convert UTC datetime string to local datetime

Experienced programmer here, but I've never had to convert time to and from utc. Recently had a request to have my app be timezone aware, and I've been running myself in circles. Lots of information ...
10
votes
4answers
5k views

Difference between UTC and GMT Standard Time in .NET

In .NET, the following statements return different values: Response.Write( TimeZoneInfo.ConvertTime( DateTime.Parse("2010-07-01 5:30:00.000"), TimeZoneInfo.FindSystemTimeZoneById("Pacific ...
9
votes
1answer
119 views

Are .Net's DateTime methods capable of recognising a Leap Second?

With a Leap Second on the horizon for June this year it got me wondering whether the .Net framework is leap second aware? The extra second is to be inserted after the last second of June 30th so UTC ...
9
votes
2answers
9k views

Android get Current UTC time

What is the function to get the current UTC time. I have tried with System.getCurrentTime but i get the current the of the device. Thanks
9
votes
5answers
6k views

Nil NSDate when trying to get date from UTC string in zulu time

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 NSDate object. A bit of ...
9
votes
4answers
731 views

What is the common practice with regards to differentiating between UTC and GMT?

I finally found out the difference between UTC and GMT 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 ...
9
votes
2answers
6k views

How can I convert a date value in UTC format to a date object in Javascript?

I've been trying to convert a UTC value in a string into a more readable format. To do that, I'm trying to parse the date using the Javascript Date.parse method. That however does not work on the ...
8
votes
3answers
677 views

Cache.Add absolute expiration - UTC based or not?

The examples for Cache.Add uses DateTime.Now.Add to compute the expiration, i.e. it passes: DateTime.Now.AddSeconds(60) as the value of the absoluteExpiration parameter. I'd have thought that ...
8
votes
4answers
4k views

How does DateTime.ToUniversalTime() work?

How does the convertion to UTC from the standard DateTime format work? More specifically: if I create a DateTime object in one time zone and then switch to another time zone and run ToUniversalTime() ...
7
votes
2answers
328 views

Getting computer's utc offset in Python

Hopefully a simple question, but I've been searching and searching with no luck: In Python, is there a way to figure out what utc time offset the computer is set to?
7
votes
6answers
8k views

php convert datetime to UTC

I am in need of an easy way to convert a date time stamp to UTC (from whatever timezone the server is in) HOPEFULLY without using any libraries.
7
votes
7answers
424 views

Is there ever a good reason to store time not in UTC?

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 ...
6
votes
4answers
713 views

Working with timezones and daylight savings time in Javascript

My single-page javascript app retrieves data in JSON format via REST calls. Dates come formatted using the UTC timezone in standard ISO8601 format, such as 2011-02-04T19:31:09Z. When signing up for ...
6
votes
4answers
3k views

parsing of date/time from string (boost?)

I'm kinda stuck with parsing of date/time strings. Help would be greatly appreciated. Input: strings with date and optional time. Different representations would be nice but necessary. The strings are ...
6
votes
3answers
337 views

Scheduling & DST

I am writing a calendar/scheduling app in PHP. Right now I take the day of the week you want the event to occur on and the time. I also ask for the timezone and adjust accordingly to get the event ...
6
votes
13answers
1k views

Displaying time and timezone information to the user (what, not how)

(This is a question about the UI rather than the technology required to do it) What is the clearest way to display a time for events occurring in different timezones to a user? Does your "average" ...
5
votes
2answers
106 views

Need to display local times over DST transitions using Javascript Date Object

I am trying to output a series of times in hour (on the hour) intervals within Javascript (so inside a web browser such as Firefox). This series of times will overlap the short day (losing an hour in ...
5
votes
2answers
607 views

PHP UTC to Local Time

Server Environment Redhat Enterprise Linux PHP 5.3.5 Problem Let's say I have a UTC date and time such as 2011-04-27 02:45 and I want to convert it to my local time, which is America/New_York. ...
5
votes
4answers
422 views

Entity Framework DateTime and UTC

is it possible to have Entity Framework (I am using the Code First Approach with CTP5 currently) store all DateTime values as UTC in the database? Or is there maybe a way to specify it in the ...
5
votes
4answers
938 views

How to show a UTC time as local time in a webpage?

I have a database that holds a time as UTC. This time can be shown in a webpage, so I’ve been asked to show it as local time in the page as it can be viewed from any country. A colleague mentioned ...
5
votes
1answer
364 views

Python: Figure out local timezone

I want to compare UTC timestamps from a log file with local timestamps. When creating the local datetime object, I use something like: >>> local_time=datetime.datetime(2010, 4, 27, 12, 0, 0, ...
5
votes
2answers
2k views

SQL Server - Convert date field to UTC

I have recently updated my system to record date/times as UTC as previously they were storing as local time. I now need to convert all the local stored date/times to UTC. I was wondering if there is ...
5
votes
2answers
1k views

How can I determine a timezone by the UTC offset?

I have a scenario where I have a timezone offset (in minutes) and need to determine the timezone for it. I know that all the data is not available (for example, there may be several timezones with an ...
5
votes
2answers
597 views

how to render a user the local-time using a UTC Time (asp.net & ajax)

I've an issue while my data persisted as utc date-time and I want my users see the right time (thier) local time. I can do this using javascript that sends the local time from the client machine to ...
5
votes
5answers
4k views

How do I make MySQL's NOW() and CURDATE() functions use UTC?

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? Believe, ...
4
votes
2answers
96 views

Using PHP to parse a Google Calendar XML - End date is off by a day

I am trying to make a webpage and have the next three events on a Google Calendar show up on the home page. I have been using this PHP (http://james.cridland.net/code/google-calendar.html) to access ...
4
votes
2answers
72 views

How to compute wall time from UTC time + TimeZone ID?

I have been googling around this issue, but could not find clear and definitive documentation. Assuming I have a UTC time and a TimeZone ID, how do I calculate wall time (= UTC time + Timezone offset ...
4
votes
4answers
97 views

C# - Formatting current time

In C#, how can I get the current DateTime in the following format? 2011-08-10T21:36:01.6327538Z
4
votes
1answer
205 views

C# - DateTime.FromFileTimeUtc to DateTime.FromFileTime

The problem: I have A LOT of code that in many places assumes a local time, and uses the function DateTime.FromFileTime. Now, some of our Data services have switched to UTC time, and I want to know ...
4
votes
2answers
512 views

How is the result of the Delphi NOW function affected by the option to “Adjust clock for daylight saving changes”

I realise this question could have been answered by writing some test code. I'm not lazy, I just thought that the answer might be generally useful. I have an app that has generated a large amount of ...
4
votes
1answer
913 views

Joda time does time conversion 'too soon'

We have an application where the timing is critical. We're using joda to do time conversions and storing all data in UTC time. We've been in production for a while and everthing has been be perfect ...
4
votes
3answers
530 views

Store UTC date time in database

I will convert all date & time input by user (local time) to UTC and store it in database. When display back I will convert UTC time to their time zone which is set in their profile. Is it good?
4
votes
2answers
284 views

How to Convert to UTC

I'm getting dates & times from various sources (e.g. file's date/time from FTP server, email's date/tiem received, etc.) and need to store them all as UTC (so they all have a common reference). ...
4
votes
3answers
9k views

Force Java timezone as GMT/UTC

I need to force any time related operations to GMT/UTC, regardless the timezone set on the machine. Any convenient way to so in code? To clarify, I'm using the DB server time for all operations, but ...
4
votes
6answers
2k views

Storing date/times as UTC in database

I am storing date/times in the database as UTC and computing them inside my application back to local time based on the specific timezone. Say for example I have the following date/time: 01/04/2010 ...
4
votes
4answers
2k views

Convert to UTC Timestamp

//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 ...
4
votes
2answers
2k views

pytz utc conversion

What is the right way to convert a naive time and a tzinfo into an utc time? Say I have: d = datetime(2009, 8, 31, 22, 30, 30) tz = timezone('US/Pacific') First way, pytz inspired: d_tz = ...
4
votes
2answers
497 views

Converting old and new local times to UTC under Windows XP/Server 2003

My application converts past and present dates from local time to UTC. I need to ensure I will honor any future DST updates to Windows while still correctly handling past dates. The application is ...
4
votes
2answers
3k views

UTC Offset in PHP

What's the easiest way to get the UTC offset in PHP, relative to the current (system) timezone?
3
votes
1answer
29 views

Convert Facebook Event start/end times to UTC

I'm having trouble getting event start in end times in UTC format from facebook. I'm using the Facebook Python library, I am running these queries to retrieve events: fb_events = ...
3
votes
2answers
74 views

Number of seconds since the beginning of the day UTC timezone

How do I find "number of seconds since the beginning of the day UTC timezone" in Python? I looked at the docs and didn't understand how to get this using datetime.timedelta.
3
votes
2answers
75 views

Is the Unix Timestamp(UTC) and Java UTC same? Can we compare?

I am afraid, this would seem duplication of many questions on this same context, but i couldn't find any answers for me in that. What i want is a comparison between two UTC's. One generated in java ...
3
votes
1answer
77 views

UTC DateTime problems with ajax

Hey I would really appreciate any help with this as it has been bothering me for a while. I currently store all dateTimes in the DB as UTC dates. Each users time zone offset is also stored in the DB. ...
3
votes
2answers
110 views

how to interpret this timestamp?

Lets say this is the time-stamp: 2011-07-06T00:00:35.851-07:00 What does that tell me? This is how I am trying to understand it: 2011-07-06 - date 00:00:35 - hh:mm:ss 851 - micro seconds?? ...

1 2 3 4 5 6