PHP date_offset_get() 函數
PHP date_offset_get() 函數
實例
返回奧斯陸(在歐洲挪威)冬天和夏天相對于 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.";
?>
$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() 函數返回時區偏移。
語法
date_offset_get(object);
參數 | 描述 |
---|---|
object | 必需。規定一個由 date_create() 返回的 DateTime 對象。 |
技術細節
返回值: | 如果成功則返回相對于 UTC 的以秒計的時區,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5.2+ |

相關文章
- PHP 教程
- PHP 安裝
- PHP 語法
- PHP 數組排序
- PHP 函數
- PHP 文件上傳
- PHP array_combine() 函數
- PHP array_pop() 函數
- PHP array_replace() 函數
- PHP array_reverse() 函數
- PHP array_uintersect() 函數
- PHP array_uintersect_uassoc() 函數
- PHP array_values() 函數
- PHP array_walk() 函數
- PHP ksort() 函數
- PHP shuffle() 函數
- PHP sizeof() 函數
- PHP uksort() 函數
- PHP 5 Calendar 函數
- PHP 5 Math 函數