vote up 4 vote down star
1

What's the easiest way to get the UTC offset in PHP, relative to the current (system) timezone?

flag

2 Answers

vote up 6 vote down check
  date('Z');

returns the UTC offset in seconds.

link|flag
vote up 1 vote down

timezone_offset_get()

$this_tz_str = date_default_timezone_get();
$this_tz = new DateTimeZone($this_tz_str);
$now = new DateTime("now", $this_tz);
$offset = $this_tz->getOffset($now);

Untested, but should work

link|flag
Useful if you're using the DateTime class in PHP 5. But I'm not. – Adam Ernst Oct 11 '08 at 1:36

Your Answer

Get an OpenID
or

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