0
votes
0answers
47 views

Timezone with TZ Environment Variable - Safety and issues

first of all, I want to know if the changing of the TZ Environment variable is secure, I was working on it because I didn't find another method for an efficient convertion. I am not sure if TZ is ...
0
votes
2answers
195 views

Convert GMT time local time in XSLT

How to convert GMT time to local time ( MDT or MST ) automatically. I got this below working but i need a condition which determines utc -6 or utc -7 based on dates. <xsl:value-of ...
-2
votes
2answers
102 views

Time comparison in php [duplicate]

Possible Duplicate: strtotime date weird result I am trying to compare two times for an attendance system, i am trying to get the accurate time for Arkansas,USA but im not being to able to ...
0
votes
1answer
483 views

How to store Current date and time in ISODATE format in mongodb php?

I want to store the current GMT date and time in ISODate format in mongodb. Similarly to this ISODate("2012-07-26T17:43:25.678Z") I want to store the result in mongodb in the above mentioned ...
2
votes
3answers
1k views

How do I get time_t in GMT on Windows in C

I am writing some code that will run on multiple intercommunicating systems. I was using time() to get time_t, but this was causing problems with time zone differences between the systems, so I want ...
0
votes
5answers
784 views

Php Convert time in gmt format

I have this string 2012-06-27 16:17:06 and I want to convert it to GMT format. How can I do that? Thanks a lot.
1
vote
1answer
170 views

PHP `date()` Different than Unix `date` Command

I searched around but couldn't find exactly what I'm looking for. I have a PHP Settings page where Admins from my site are able to select an hour of the day for a daily Cron Job script to execute. In ...
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 ...
2
votes
2answers
206 views

Are timezones with the same GMT offset different in any way?

Windows asks users to choose from about 200 timezones, when there are actually only 25 GMT offsets. (see below) Can I ask users in my app to chose from these alone? Is there any difference between ...
0
votes
1answer
128 views

PHP convert weekdays and time (hour) to GMT representation

I have a web application that allows users to select to have a certain operation performed at a specific hour on a specific weekday (ex: 7pm Friday) -- recurring every weekday. My users are located in ...
1
vote
0answers
210 views

Android Time Zone difference with GMT+1 and GMT-1

I have google it, but dont find what is the problem in this code. private Date ConvertToDate(String dateString){ SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm"); Date ...
2
votes
2answers
532 views

GMT/UTC (not local) time in Unix format

I'm using JavaScript and trying to get GMT+0/UTC+0 time (otherwhise called Zulu time) in Unix format. I've managed to get my local time in Unix format like this: var datetime = new Date() var ...
5
votes
2answers
2k 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 ...
1
vote
1answer
303 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 ...
0
votes
3answers
266 views

datetime , time python

I want to convert a datestring to date in UTC . In addition need to compare this date with current time in UTC and get the difference in milliseconds in python. I looked at python timedelta ...
0
votes
1answer
376 views

How to change SystemTime format?

In the event viewer in windows 2008, the events XML are showing this: <TimeCreated SystemTime="2011-11-21T19:42:45.000Z" /> The time currently is 2011-11-21 14:42:45. I understand that the ...
0
votes
1answer
2k views

Select Now() as CurrentDateTime mysql time zone

How can I use the SELECT Now() As CurrentDateTime for GMT, as it displays the tome as GMT-5. Basically, when the time is: 2011-11-19 09:46:37 in GMT, it displays it as: `2011-11-19 04:46:37 How can ...
0
votes
1answer
710 views

EST/EDT to GMT conversion and date comparison

I need to convert a given GMT date and time (YYYY-MM-DD HH:MM) into such a string YYYYMMDD representing Eastern coast date. Do you think the code below is OK? $date='2011-11-07 04:30'; $date.='-4 ...
1
vote
1answer
59 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 ...
0
votes
1answer
74 views

Synchronizing GMT and Local Times

I'm pulling data from two different sources, both have timestamps. One of the sources uses GMT, and the other uses the time local to their server. I display the information from both of these ...
0
votes
1answer
526 views

Setting time according to timezone from database

I want to make a system which displays time dependant on the timezone in a particular country. E.g. a table in my database contains country names in one field, and in the column next to it, it will ...
0
votes
1answer
313 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 ...
2
votes
5answers
609 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} ...
1
vote
2answers
355 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