实例
返回奥斯陆(在欧洲挪威)冬天和夏天相对于 UTC 的以秒计的时区偏移量:
<?php
$winter=date_create("2013-12-31",timezone_open("Europe/Oslo"));
$summer=date_create("2013-06-30",timezone_open("Europe/Oslo"));
echo
date_offset_get($winter) . " seconds.<br>";
echo date_offset_get($summer)
. " seconds.";
?>
定义和用法
date_offset_get() 函数返回时区偏移。
语法
技术细节
返回值:
|
如果成功则返回相对于 UTC 的以秒计的时区,如果失败则返回 FALSE。
|
PHP 版本:
|
5.2+
|