PHP 快速導覽 - 核心延伸類別 日期、時間相關 DateTimeZone

內建類別 (class) DateTimeZone 用來建立時區物件 (object) ,有以下預先定義的常數 (constant)

  • DateTimeZone::AFRICA
  • DateTimeZone::AMERICA
  • DateTimeZone::ANTARCTICA
  • DateTimeZone::ARCTIC
  • DateTimeZone::ASIA
  • DateTimeZone::ATLANTIC
  • DateTimeZone::AUSTRALIA
  • DateTimeZone::EUROPE
  • DateTimeZone::INDIAN
  • DateTimeZone::PACIFIC
  • DateTimeZone::UTC
  • DateTimeZone::ALL
  • DateTimeZone::ALL_WITH_BC
  • DateTimeZone::PER_COUNTRY


另有以下的方法 (method)
方法說明
__construct(string $timezone)建構子, $timezone 為時區參數。
getLocation(void)回傳時區的地點。
getName(void)回傳時區的名稱。
getOffset(DateTime $datetime)回傳時差。
getTransitions([int $timestamp_begin [, int $timestamp_end]])回傳時區的相關資料。
listAbbreviations(void)回傳時區的相關資料。
listIdentifiers([int $what = DateTimeZone::ALL [, string $country = NULL]])回傳時區的識別字資料。


關於建構子的時區參數,請參考http://www.php.net/manual/en/timezones.php


舉例如下
<?php
$tz = new DateTimeZone('Asia/Taipei');
echo $tz->getLocation()['country_code'];

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


執行結果如下



中英文術語對照
類別class
物件object
常數constant
方法method


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


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


參考資料
http://www.php.net/manual/en/class.datetimezone.php
http://www.php.net/manual/en/datetimezone.construct.php
http://www.php.net/manual/en/datetimezone.getlocation.php
http://www.php.net/manual/en/datetimezone.getname.php
http://www.php.net/manual/en/datetimezone.getoffset.php
http://www.php.net/manual/en/datetimezone.gettransitions.php
http://www.php.net/manual/en/datetimezone.listabbreviations.php
http://www.php.net/manual/en/datetimezone.listidentifiers.php

沒有留言: