0
votes
3answers
37 views
In PHP: How to store the current time/date in UTC format in a string?
example:
$date = 'Wed, 18 Feb 2009 16:03:52 GMT';
//How can I get $date to equal the current time in the same format?
0
votes
2answers
332 views
Axapta/DynamicsAx: UTC datetime conversion
We are trying to interpret the data stored in Axapata's TIMEZONESRULESDATA table. Particularly, we'd like to figure out how it stores DST begin/end times. So far, my guess is:
TZENUM: foreign key …
0
votes
1answer
38 views
Django DateTime field to generate timestamp fields withOUT timezone
I am working on a Django application where I need all the postgres represented datetime fields to be saved in UTC (as they should). When I'm creating models with DateTime fields they database …
0
votes
1answer
25 views
How to determine UTC offset from server timezone?
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.
On …
1
vote
1answer
35 views
Asp.net MVC overiding default getter and setters for linq to sql, for doing UTC conversions
Hi All,
I'm getting to a point with my app where I'm about to try to roll out utc support.
I've already got it all working and have written myself two utility classes, called convertToUtc and …
0
votes
3answers
72 views
How can I format DateTime to web UTC format?
Hi,
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):
Console.Out.WriteLine(new DateTime(2009, 9, …
0
votes
3answers
257 views
Convert UTC string to TDatetime in Delphi
eg.
var tm : string;
dt : tdatetime;
tm := '2009-08-21T09:11:21Z';
dt := ?
I know I can parse it manually but I wonder if there is built-in function or win32 api function to do this ?
Any help …
0
votes
3answers
596 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 …
0
votes
2answers
49 views
C# Define begin of day of a date in another timezone
Hi,
I want to define the begin of a day in another timezone with .NET/C#.
Example:
My current timezone = GMT+1
so DateTime.Today returns 19/11/2009 23:00 UTC
but actually I want to get the …
0
votes
3answers
108 views
Converting string containing localtime into UTC in C
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:
char* date = "2009/09/01/00";
struct tm cal = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
0
votes
1answer
55 views
Convert a summer date to utc in the winter?
The function mktime takes a struct tm as argument. One of the members of struct tm is tm_isdst. You can set this to 1 for wintertime, 0 for summertime, or -1 if you don't know.
However, if during …
0
votes
1answer
49 views
How to get current UTC time in JSON format using Javascript?
Hello,
I have a JSON Date for example: "\/Date(1258529233000)\/"
I got below code to convert this JSON date to UTC Date in String Format.
var s = "\\/Date(1258529233000)\\/";
s = s.slice(7, 20);
…
2
votes
4answers
103 views
How to manage timezones in a web application?
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 …
0
votes
4answers
477 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, …
0
votes
1answer
75 views
Why does Java return a date in GMT-4.5 when choosing Co-ordinated Universal Time time zone in Windows?
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 …
