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.

I need to change the time from GMT to EST, here is the code I am using

$currenttime = date(H . ":" . i);

I am using PHP 4.

Tried a couple of things but nothing will work due to the PHP 4 bit, any help appreciated.

share|improve this question
1  
What is H . ':' . i?? The format string is just that, a string: "H:i". – meagar Feb 1 at 0:39
I have no problem with the original code, that works other than it showing he server time which is GMT and I want it to be EST. – Talmik Feb 1 at 0:45
possible duplicate of How do i get the gmt time in php – rds Feb 1 at 9:33
possible duplicate of Changing Default TimeZone in Php – borrible Feb 1 at 9:39

closed as too localized by meagar, cpilko, rds, Anand, borrible Feb 1 at 9:39

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

Put this before you do any time computation date_default_timezone_set('EST');

Also your dateformat is wrong, this is how you do it: $currenttime = date("H:i");

share|improve this answer
The date default bit doesnt work on php 4. I was hoping for a -5 hours or something – Talmik Feb 1 at 0:46
Best you check this guy out stackoverflow.com/questions/7709458/… – Hamed Al-Khabaz Feb 1 at 1:11

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