目录

PHP timezone_open() 函数

❮ PHP 日期/时间参考

示例

创建一个新的 DateTimeZone 对象,然后返回时区的名称:

<?php
$tz=timezone_open("Europe/Paris");
echo timezone_name_get($tz);
?>
亲自试一试 »

定义和用法

timezone_open() 创建一个新的 DateTimeZone 对象。


语法

下面的两个函数是等效的,并且可以使用任何函数,如上面的示例所示。

程序风格:

timezone_open( timezone)

面向对象风格:

DateTimeZone::__construct( timezone)

参数值

Parameter Description
timezone Required. Specifies a timezone
Tip: Look at a list of all supported timezones in PHP

技术细节

返回值: 成功时返回 DateTimeZone 对象。失败时为 FALSE
PHP 版本: 5.2+
PHP 变更日志: PHP 5.5.1:时区参数接受偏移值

❮ PHP 日期/时间参考