vote up 1 vote down star

In a PHP site, I have the current time setting:

D j M Y, G:ia

How do I change that to reflect current pacific time with the daylight saving time?

flag

2 Answers

vote up 2 vote down check

You can use date_default_timezone_set to set the timezone in which all date functions are run. PHP date functions take care of DST for you if you just want the current time.

link|flag
vote up 0 vote down
date_default_timezone_set('America/Los_Angeles'); // or wherever you are

$time = time();

if ($time >= strtotime("Second Sunday March 0")  && $time < strtotime("First Sunday November 0")) 
{

    echo date('m/d/y h:i a', $time);

} else {

    echo date('m/d/y h:i a', $time);

}
link|flag

Your Answer

Get an OpenID
or

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