最新的Web開發教程
 

PHP timezone_name_get() Function

<PHP日期/時間參考

返回時區的名稱:

<?php
$tz=timezone_open("Europe/Paris");
echo timezone_name_get($tz);
?>
運行示例»

定義和用法

timezone_name_get()返回時區的名稱。


句法

timezone_name_get (object);

參數 描述
object 需要。 指定DateTimeZone對象

技術細節

返回值: 從返回時區名時區列表
PHP版本: 5.2+

<PHP日期/時間參考