PHP timezone_open() 函數(shù)
PHP timezone_open() 函數(shù)
實(shí)例
創(chuàng)建一個(gè)新的 DateTimeZone 對象,然后返回時(shí)區(qū)的名稱:
<?php
$tz=timezone_open("Europe/Paris");
echo timezone_name_get($tz);
?>
$tz=timezone_open("Europe/Paris");
echo timezone_name_get($tz);
?>
運(yùn)行實(shí)例 ?
定義和用法
timezone_open() 創(chuàng)建一個(gè)新的 DateTimeZone 對象。
語法
timezone_open(timezone);
參數(shù) | 描述 |
---|---|
timezone | 必需。規(guī)定一個(gè)時(shí)區(qū)。 提示: 查看 PHP 中支持的所有時(shí)區(qū)列表 |
技術(shù)細(xì)節(jié)
返回值: | 成功則返回 DateTimeZone 對象,失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5.2+ |

相關(guān)文章
- PHP 變量
- PHP 常量
- PHP 數(shù)組排序
- PHP 函數(shù)
- PHP 命名空間 namespace
- PHP $_POST 變量
- PHP 包含文件 include 和 require 語句
- PHP 文件上傳
- PHP Secure E-mails
- PHP array_change_key_case() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP uasort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Filesystem 函數(shù)