Greenwich Mean Time (GMT) is a term originally referring to mean solar time at the Royal Observatory in Greenwich, London.

learn more… | top users | synonyms

98
votes
20answers
157k views

How can I get the current date and time in UTC or GMT in Java?

When I create a new Date object, it is initialized to the current time but in the local timezone. How can I get the current date and time in GMT?
25
votes
5answers
25k views

NSDate - Convert Date to GMT

I need the ability to convert a NSDate value to a GMT Date. How can I go about converting a NSDate value to a GMT formatted NSDate value, independent of what ever date locale settings the iphone is ...
15
votes
4answers
16k 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 ...
0
votes
2answers
3k views

how to convert php date formats to GMT and vice versa?

i am new to php. i want to write a function where i need user to input date in any date format including DST,into GMT format and again later back into the original entered format.please any body help ...
5
votes
2answers
7k views

Get GMT Time in Java

In Java, I want to get the current time in GMT. I tried various options like this: Date date = new Date(); Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT")); date1 = ...
2
votes
3answers
7k views

Getting GMT time with Android

I have been digging into the question for a while in StackOverflow Android get Current UTC time and How can I get the current date and time in UTC or GMT in Java? I have tried two ways to get the ...
9
votes
3answers
11k views

PHP daylight saving time detection

I need to send an email to users based wherever in the world at 9:00 am local time. The server is in the UK. What I can do is set up a time difference between each user and the server's time, which ...
9
votes
4answers
3k views

UNIX timestamp always in GMT?

UNIX timestamp always in GMT? I tried to run php function time() and when I tried to convert the unix timestamp from the time() function, the output is not similar to the computer time. Thank You
2
votes
1answer
2k views

Log4J; how to ensure timestamps are always in GMT using ConversionPattern?

How can I ensure that all timestamps that my log4j is using, are in GMT? I have tried the following but it prints "GMT" inside the timestamp log4j.appender.ConversionPattern=%d{HH\:mm\:ss,SSS}{GMT} ...
4
votes
2answers
465 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). ...
1
vote
3answers
90 views

How to show GMT Time based upon country in php

I want to show GMT Timebased upon country. If suppose, some user from india, register into my application i should append GMT time as GMT +5 into my database. If suppose, some other user from france, ...
1
vote
2answers
354 views

How can I calculate new time zone in python?

Lets say I have a time 04:05 and the timezone is -0100 (GMT) I want to calculate the new time which will be 03:05 Is there any function in python to do that calculcation ? Thanks
1
vote
4answers
4k views

How to make Date locale-independent?

I have a db, that stores dates in OleDateTime format, in GMT timezone. I've implemented a class, extending Date in java to represent that in classic date format. But my class is locale-dependent (I'm ...
14
votes
6answers
43k 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 ...
6
votes
3answers
13k views

MySQL query for current GMT time

This sounds simple enough but I haven't been able to figure out how to use a simple SELECT statement to return the current time in GMT. I have been trying to use CONVERT_TZ() to convert NOW() to GMT ...
5
votes
7answers
989 views

Java time in GMT

I have a Grails application with the following code: Date now = Calendar.getInstance().getTime() //Also tried new Date() println "now: " + now When I do this, I get now: Thu Aug 18 12:47:09 CDT ...
2
votes
2answers
795 views

Get the GMT time given date and UTC offset in python

I have a date string of the following format '%Y%m%d%H%M%S' for example '19981024103115' and another string of the UTC local offset for example '+0100' What's the best way in python to convert it to ...
2
votes
5answers
5k views

What's the recommended way to store current time using PHP and MySQL?

My initial approach was: $current = time(); // save this to column CURRENT_TIME with column type VARCHAR //retrieve it like this $retrieved = mysql_query(....) //assume query for getting the stored ...
2
votes
3answers
364 views

Convert historical time to GMT

I need to convert some string times in the format "2011061411322100" into GMT - my first attempt is below. However, the problem is that the times are coming from another PC and is a historical time. ...
2
votes
1answer
262 views

PHP Timezones getTransitions trustworthy?

Have you ever had any issue with PHP timezones conversions through the getTransitions function? I am trying to convert an Argentinian date into GMT. If I look into the array of transitions, I get: ...
1
vote
1answer
329 views

how to make datetime class to work with DST and without DST in php?

I have wrote the code where i am using DateTime class which also converts dst following countries time into GMT format. But i want the functionality where i need the DateTime class should work on ...
0
votes
4answers
7k views

Java - Store GMT time

My server has GMT+7, so if i move to another server has another GMT timezone, all date stored in db will incorrect? Yes Q1 is correct, how about i will store date in GMT+0 timezone and display it in ...
5
votes
6answers
1k views

can 2 timezone be for 1 city?

I want to know if there can be 2 or more GMT timezones for one city or state. I know there can be more then one GMT timezone for a country, but not sure if it's for state and city too. Share your ...
2
votes
1answer
209 views

Gmt php or UTC C# equivalence through SOAP

is C# DateTime.UtcNow and php date("c") are equivalent I doubt because when I soap both I get from C# : <dateDebutAction ...
2
votes
4answers
4k views

How to use an Internet time server to get the time?

I would like to get the GMT [ Greenwich Mean Time ], and also i don't want to rely on my system date time for that. Basically, I want to use time sync server like in.pool.ntp.org [ india ] for GMT ...
2
votes
3answers
4k views

UTC vs. GMT - Java vs. .Net

In .Net UTC and GMT are not the same Difference between UTC and GMT Standard Time in .NET Is it the same with Java? Does Java has the notion that GMT has DST changes while UTC doesnt? Thanks!
2
votes
3answers
1k views

user datetime setting as GMT, how to convert date to their localized setting?

In my users setting I have a dropdown with all the GMT dates for the user to select. In c#, how would I convert a datetime stored in the database to their GMT time? The time stored in the database ...
1
vote
0answers
57 views

Displaying local time to a user when all you have is an offset (from GMT)

I understand that it's pretty easy to display local time to a user given an offset from GMT for the timezone (e.g. -7 hours for Pacific Daylight Time). But, what if I want to continue to display the ...
1
vote
1answer
3k views

NSDate - GMT on iPhone

I have the following code in a production application which calculates a GMT date from the date the user enters: NSDate *localDate = pickedDate; NSTimeInterval timeZoneOffset = [[NSTimeZone ...
0
votes
1answer
136 views

squeryl date to long conversion

I want to store java.util.Date (or Timestamp) as an int (or Long) in my db using Squeryl. I'd like to control how the date is transformed to the number and vice versa. How can I achieve this? I'm ...
0
votes
1answer
1k views

Converting GMT time to local time using timezone offset, not timezone identifier

It's pretty easy to convert a given GMT date into local time if you're given the timezone identifier from this list in PHP: http://www.php.net/manual/en/timezones.php For example, you can do this ...
0
votes
1answer
5k views

NSDate dateWithTimeIntervalSince1970 NOT returning GMT/UTC time

I tried an experiment because I need to be able to generate a unix timestamp (since 1970) in the app I am working on. NSLog(@"Getting timeIntervalSince1970"); double ...
0
votes
2answers
3k views

How to convert datetime to GMT in php

Alright, so i'm not sure if im converting user input time to GMT properly. I will be having users across several timezones entering "events" and they will have to be able to see "how long untill" or ...
0
votes
1answer
506 views

Get last Sunday within a range of two dates (GMT, DST)

I'm trying to get the last Sunday between two week numbers - in order to avoid DST. IN ORDER WORDS: Start a range of time - from the last Sunday in March to the last Sunday in October. This is my ...
0
votes
1answer
312 views

How to get correct time for my website?

I need accurate time which my website should be able to access thru internet for synchronization. How can I do it? Should I ping some time server(by the way which one?) every 30 minutes? Then how will ...