创建一个新的 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:时区参数接受偏移值 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!