Tagged Questions
Greenwich Mean Time (GMT) is a term originally referring to mean solar time at the Royal Observatory in Greenwich, London.
32
votes
11answers
63k 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?
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 ...
8
votes
2answers
643 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 ...
7
votes
5answers
11k 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 ...
6
votes
2answers
2k views
How I can I convert timezones in Perl?
I am trying to convert a date/time GMT 0 to GMT -6 in Perl.
For example, a DHCP Server lease time is in the following format:
2010/02/18 23:48:37
I am trying to convert that time to the ...
5
votes
1answer
97 views
Find timezone from airport code using perl code
As I am right now working on blocking the particular flight to display if the departing time is with in 3 hours of booking time. As, I need to get the timezone of the departing airport to convert it ...
5
votes
7answers
191 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 ...
5
votes
4answers
578 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
5
votes
6answers
445 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 ...
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
2answers
156 views
Convert GMT DateTime String
I am pretty new to Java and I am a little stuck with using SimpleDateFormat and Calendar. I have a Date-Object and want to extract a GMT datestring like yyyy-MM-dd HH:mm:ss. I live in Germany and at ...
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 ...
3
votes
3answers
533 views
How to convert EST/EDT to GMT?
I have a few records inside a column which represent either EST or EDT Time. I need to convert these times to GMT time. The format of the time are:
10/1/2010 0:0:0
10/1/2010 0:6:0
...
10/1/2010 ...
3
votes
2answers
477 views
Should I use DateTime.Now or DateTime.UtcNow in HttpCookie.Expires and HttpCachePolicy.SetExpires?
Should I use DateTime.Now or DateTime.UtcNow in HttpCookie.Expires and HttpCachePolicy.SetExpires?
Cookies are sending 'GMT' time, but I don't know what happen if I send DateTime.Now.AddDays(3) if I ...
3
votes
3answers
555 views
Convert historic dates from utc to local time
I have an sql table with data like this:
| theDate (datetime) | theValue (int) |
----------------------------------------
| 2010-05-17 02:21:10 | 5 |
| 2009-03-12 04:11:35 | ...
3
votes
1answer
198 views
iPhone CurrentTimeZoneOffset from UTC
Is there a way to get the offset time zone for a given date.
For example, if I am in New York and I pass in 12-12-2009 4 PM I would get back "-4" as we are 4 hours off GMT.
(In .NET land there is a ...
2
votes
2answers
50 views
Why is GMT the standard for computer time instead of UTC?
It feels to me like everywhere I've seen time related algorithms in programming, GMT was the base time. For example, I was told to always store time in a DB in GMT+00 so that time zone changes don't ...
2
votes
3answers
63 views
how to know the local date without javascript
Hello I'm coding a chatting box and I'd like to stamp the current local time of the user next to its posted message.
So I could use javascript :
var date = new Date();
and send a string form of the ...
2
votes
3answers
146 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
113 views
Are struct stat times GMT?
One of the fields in struct stat is st_mtime. I assume that is seconds since jan 1, 1970. Is that GMT or local time?
2
votes
1answer
156 views
“Java Date() returns date in UTC” - what does it actually mean?
My question might be trivial but I'm just looking for clarifications. I read somewhere in SO that Java's Date() is actually always in UTC time, how come when I create a Date() object and print it ...
2
votes
4answers
148 views
I want to show the time in GMT from (1800+0100)
I have a field in a table with varchar data type which contains the time as 1800+0100, how can I show it like this 19:00 GMT? Is there any C# method which takes the time as 1800+0100 and converts to ...
2
votes
6answers
603 views
Conversion to unix timestamp incorrect
I have a function that I wrote (if there is a good standard substitute, please let me know...)
time_t get_unix_time(string time_str) {
time_t loctime;
time(&loctime);
struct tm ...
2
votes
2answers
125 views
how to convert time_t to something like “Fri, 12 Nov 2010 16:02:54 GMT ” in C on Linux
I'm writing a simple web server in C on Linux.
I have to add the last modified time of a file that will be transferred to the client(browser),
I analysed how some websites and find out that they ...
2
votes
1answer
100 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:
...
2
votes
5answers
358 views
validate time GMT offset and striping with regex?
// create a string
$string = '+7';
// try to match the beginning of the string
if(preg_match("{-15 to +12}", $string))
{
// if it matches we echo this line
return {strip all the + sign}
...
2
votes
2answers
592 views
How to get the current time in GMT? [closed]
Possible Duplicate:
How can I get the current date and time in UTC or GMT in Java?
I want to get the current timestamp in GMT; any ideas how to do that?
i managed to get a string in gmt ...
2
votes
2answers
3k 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 ...
2
votes
1answer
903 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 ...
2
votes
3answers
398 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 ...
2
votes
2answers
916 views
J2ME Get current time zone
I have a j2me application and it needs to get the name of the current timezone and send it off to the server.
However, the only format that I seem to be able to get the phone to give me is ...
1
vote
2answers
18 views
Getting the correct GMT format using DateFormat Object
If i have a File object how can i get the lastModified() date of this file in this GMT format: Mon, 23 Jun 2011 17:40:23 GMT.
For example, when i call the java method lastModified() on a file and use ...
1
vote
1answer
45 views
Difference between GMT and UTC in Android
The function System.currentTimeMillis() returns the number of milliseconds since January 1, 1970 00:00:00 UTC.
The function Date.getTime() returns the number of milliseconds since January 1, 1970 GMT ...
1
vote
2answers
62 views
Output time with custom format (GMT instead UTC)
I'm wondering how to get time in exactly this format using ruby 1.9.2:
I'm using rails 3.1 may be need to setup some environment constants to have it out of box with to_s method?
2011-11-11 15:20:01 ...
1
vote
1answer
34 views
Working out starting time when user has chosen the gmt time
I have a loop that checks to see if a user's daily game has started based on time(). The event starting time is based on the GMT time that the user has chosen.
My problem is that I can't seem to ...
1
vote
1answer
93 views
How to format timestamp in GWT app with given timezone?
I have to format date/time in my gwt app with specific timezone, which is loaded from the server. Possible timezones are like this GMT, GMT+1, GMT-2 etc...
Up to now i used DateTimeFormat to format my ...
1
vote
2answers
139 views
php “countdown til” and “since time” GMT UTC time function
I'm working with a function I found to do this, but I'm trying to make it work with a GMT utc timestamp:
EDIT:
Maybe my issue is with how i'm "converting" the user input time to GMT...
I was doing
...
1
vote
1answer
111 views
Historical time to GMT\UTC with DST
Similar to:
Convert historical time to GMT
This time my scenario is:
I need to convert some string times in the format "2011061411322100" into GMT. The problem is that the times are coming from ...
1
vote
3answers
205 views
PHP file modified time use GMT offset setting to report correct time
I'm currently reporting file modified time like so:
$this->newScanData[$key]["modified"] = filemtime($path."/".$file);
$modifiedtime = date($date_format." ".$time_format, ...
1
vote
1answer
172 views
How to subtract 3 hours from a datetime using SQL?
I get a date time string in the format Y-%m-%d, using the query
SELECT DATE_FORMAT(x.date_entered, '%Y-%m-%d') AS date FROM x ORDER BY date ASC
What I want to do is to subtract 3h from that date ...
1
vote
2answers
1k 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 ...
1
vote
1answer
96 views
Debug simple java code related to Calendar Date GMT
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
public class Test {
public static void ...
1
vote
1answer
179 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 ...
1
vote
2answers
455 views
How can I get the time in GMT using GWT?
I want to get the current time of the machine in GMT and presented it on custom format like this one using GWT:
yyyyMMddHHmmss
How I can achieve that?
I've tried this, but I didn't find how can ...
1
vote
3answers
534 views
Determining Local Time in another Timezone
How can I determine the current date and time of various countries using a PERL script that executes on a server in the US? For example, getDTnow() should determine the current date and time on the ...
1
vote
2answers
819 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 ...
1
vote
3answers
1k 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!
1
vote
3answers
236 views
What is the difference between the current timestamp in the GMT time zone and the current timestamp in your local time zone?
This is a sample question i found at ZEND php certificate practice test, the correct answer of this question is:
"
There is no difference between the current time in any time zoneāthe current time is ...
1
vote
2answers
453 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 ...