PHP timezone_offset_get() 函数

实例

返回相对于 GMT 的时区偏移:

<?php
$tz=timezone_open("Asia/Taipei");
$dateTimeNY=date_create("now",timezone_open("America/New_York"));
echo timezone_offset_get($tz,$dateTimeNY);
?>

运行实例

定义和用法

timezone_offset_get() 返回相对于 GMT 的时区偏移。

语法

timezone_offset_get(object,datetime);
参数 描述
object 必需。规定由 timezone_open() 返回的 DateTimeZone 对象。
datetime 必需。规定需要计算偏移的日期/时间。

技术细节

返回值: 若成功则返回以秒为单位的时区偏移,失败则返回 FALSE。
PHP 版本: 5.2+