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.

PHP CODE

$t = strtotime( '2012-09-21T03:00:00+00:00 America/Chicago' );
$t2 =  date('c',$t);
echo $t2; 

OUPUT

 2012-09-20T23:00:00-04:00

QUESTION

Chicago's timezone is UTC-5, why don't I get 2012-09-20T22:00:00-05:00 as the result?

share|improve this question
2  
Welcome to the DST. It's more f'd up than Evander Holyfield's check book. – wesside Sep 20 '12 at 22:44

2 Answers

up vote 1 down vote accepted

strtotime converts to a Unix timestamp. date will convert the timestamp to a string using the current time zone. Try setting your time zone first.

$t = strtotime( '2012-09-21T03:00:00+00:00 America/Chicago' );
date_default_timezone_set('America/Chicago');
$t2 =  date('c',$t);
echo $t2;
share|improve this answer
1  
+1. Current versions of PHP will even warn you if you haven't set a default timezone. – ghoti Sep 20 '12 at 23:08

This doesn't really answer my question, but I did the following to fix it:

date_default_timezone_set('America/Chicago');
$t = strtotime( '2012-09-21T03:00:00+00:00' );
$t2 =  date('c',$t);
echo $t2;

Output: 2012-09-20T22:00:00-05:00

share|improve this answer
We were posting at the same time. :) – jimp Sep 20 '12 at 23:03
1  
yep! but you answered the question. thanks! – Gil Birman Sep 20 '12 at 23:04

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.