PHP 快速導覽 - 核心延伸函數 日期、時間相關 timezone_location_get()

內建函數 (function) timezone_location_get() 取得時區的地點相關資料,回傳為陣列 (array)

函數說明
array timezone_location_get(DateTimeZone $object)$object 為時區物件。


timezone_location_get() 與 DateTimeZone::getLocation(void) 有相同的功能,舉例如下
<?php
$tz = new DateTimeZone("Asia/Taipei");
print_r($tz->getLocation());
print_r(timezone_location_get($tz));

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:datetime46.php
    功能:示範 PHP 程式 
    作者:張凱慶
    時間:西元 2013 年 2 月 */
?>


執行結果如下



中英文術語對照
函數function
陣列array
參數parameter


您可以繼續參考
日期、時間相關的類別與函數


相關目錄
回 PHP 快速導覽
回 PHP 教材
回首頁


參考資料
http://www.php.net/manual/en/function.timezone-location-get.php
http://www.php.net/manual/en/datetimezone.getlocation.php

沒有留言: