发布于 2016-11-18 14:41:24 | 64 次阅读 | 评论: 0 | 来源: 网络整理
返回时区的名称:
<?php
$tz=timezone_open("Europe/Paris");
echo timezone_name_get($tz);
?>
timezone_name_get() 返回时区的名称。
timezone_name_get(object);
参数 | 描述 |
---|---|
object | 必需。规定一个 DateTimeZone 对象。 |
返回值: | 从时区列表中返回时区的名称。 |
---|---|
PHP 版本: | 5.2+ |