1
vote
2answers
186 views

How to get the GMT equivalent using TimeZone ID

I would like to get the GMT equivalent using the TimeZone id Example: Pacific/Fiji ==> should be GMT+13 because DST started on Sun, 21 Oct 2012. But instead, I get GMT+12. Below is my code: public ...
10
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 ...
0
votes
1answer
507 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
315 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 ...
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 ...