Date/Time 函数
在线手册:中文 英文
PHP手册

date_offset_get

(PHP 5 >= 5.2.0)

date_offset_get别名 DateTime::getOffset()

说明

此函数是该函数的别名: DateTime::getOffset()


Date/Time 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: 别名 DateTime::getOffset

用户评论:

Kae Cyphet (11-Oct-2010 10:43)

The following gets the timezone of the server including daylight savings time changes.

<?php
$seconds
= date_offset_get(new DateTime);
print
$seconds / 3600;
// returns pos/neg decimal (eg. -7 if in PST and DST is active.)
// remember there are time zones with 30 and 45 min offsets
// http://en.wikipedia.org/wiki/Time_zone
?>