vote up 0 vote down star

I am using date() function it getting the date and time as per my given format but the time its showing me is 4 hours forward than my current local machine time: This is my code

echo date("Y-m-d h:i:s", time());

Its showing me : 2009-10-28 08:47:42 Where as it should Disply : 2009-10-28 04:47:42

Any Idea whats wrong with this and why its showing different time.

flag

60% accept rate

4 Answers

vote up 1 vote down check

it is likely giving you GMT, you need to set your timezone: e.g. date_default_timezone_set('America/Los_Angeles');

http://php.net/manual/en/function.date-default-timezone-set.php

link|flag
I am in Kuala Lumpur Malaysia so what should be my time zone . – Talha Bin Shakir Oct 28 at 21:02
php.net/manual/en/timezones.php should help you find yourself in there – Mike Valstar Oct 28 at 22:55
vote up 2 vote down

It's returning the timezone of your server, not your computer

try http://www.php.net/manual/en/function.date-default-timezone-set.php

link|flag
vote up 0 vote down

Because you are in, probably, US/Eastern (America/New_York, currently EDT) time zone, but the PHP you are using is running in UTC. You need to ensure that the TZ variable is set in the PHP environment.

link|flag
vote up 2 vote down

Make sure your time zone is set correctly:

e.g.

date_default_timezone_set('UTC');
link|flag
That's likely to perpetuate the problem - using that value. However, setting the default time zone to an appropriate value is correct (just UTC is probably not correct). – Jonathan Leffler Oct 28 at 20:55
Agreed. The timezone the author sets would be whatever is correct for their application. – kchau Oct 28 at 21:00

Your Answer

Get an OpenID
or

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