PHP timezone_open() 函数
实例
创建新的 DateTimeZone 对象,然后返回时区的名称:
<!DOCTYPE html>
<html>
<body>
<?php $tz="timezone_open("Asia/Shanghai");" echo="" timezone_name_get($tz);=""?>
</body>
</html>
定义和用法
timezone_open()
创建新的 DateTimeZone 对象。
语法
timezone_open(timezone);
参数 | 描述 |
---|---|
timezone | 必需。规定时区。 |
技术细节
返回值: | 若成功则返回 DateTimeZone 对象,失败则返回 FALSE。 |
---|---|
PHP 版本: | 5.2+ |