Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just a quick one. On my site I have a couple of different methods of storing the date in the database. For automatically created dates (i.e. signup time etc.) I use time().

But for manually entered dates I use strtotime().

The problem is, with date_default_timezone_set('UTC') strtotime() is correct but time() is an hour behind.

And vice versa date_default_time_set('Europe/London') time() is correct but strtotime() is an hour behind.

I need both to be right, in a way I don't have to change my code when we leave DST. What is the best way to go about this.

Cheers, RJ

share|improve this question
1  
time() will always generate a UNIX timestamp whose timezone is UTC. See this demo. – nickb Sep 12 '12 at 13:40
What are you putting inside strtotime()? – FreshPrinceOfSO Sep 12 '12 at 14:37
strtotime('dd/mm/yyyy') – TMPilot Sep 12 '12 at 14:42
I'm assuming you know that you're only specifying a date, not time with seconds, and you will never get the same result? – FreshPrinceOfSO Sep 12 '12 at 14:51
Yes the time tends to default to 00:00:00 which is great because it's the exact date. But with date_default_time_set('Europe/London') it is an hour behind, so the day before. So the best option may be to just use Europe/London and use strtotime('dd/mm/yyyy 01:00:00'), but what will happen when we leave daylight saving? – TMPilot Sep 12 '12 at 15:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.