PHP timezone_offset_get() 函数

返回上一级

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

(php 5.2+)

函数原型

timezone_offset_get **(object,datetime);

参数列表

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

返回值

成功则返回以秒为单位的时区偏移
失败则返回 FALSE

范例

下面的代码输出相对于 GMT 的时区偏移

<?php

$tz = timezone_open("Asia/Taipei");

$dateTimeOslo = date_create("now",timezone_open("Europe/Oslo"));

echo timezone_offset_get($tz,$dateTimeOslo);

运行范例 »

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.