PHP timezone_name_get() 日期 时间 函数 详解
php基础 2022-06-06 17:08:22小码哥的IT人生shichen
PHP timezone_name_get() 函数
实例
返回时区的名称:
<?php
$tz=timezone_open("America/New_York");
echo timezone_name_get($tz);
?>
完整实例:
<!DOCTYPE html>
<html>
<body>
<?php
$tz=timezone_open("America/New_York");
echo timezone_name_get($tz);
?>
</body>
</html>
定义和用法
timezone_name_get() 返回时区的名称。
语法
timezone_name_get(object);
参数 | 描述 |
---|---|
object | 必需。规定 DateTimeZone 对象。 |
技术细节
返回值: | 从时区列表中返回时区的名称。 |
---|---|
PHP 版本: | 5.2+ |