date_timezone_get()函數是PHP中的內置函數,用於返回相對於給定DateTime的時區。如果成功,則此函數返回DateTimeZone對象;如果失敗,則返回False。
用法:
- 程序風格:
date_timezone_get( $object )
- 麵向對象的樣式:
DateTime::getTimezone( void ) DateTimeImmutable::getTimezone( void ) DateTimeInterface::getTimezone( void )
參數:該函數接受單個參數$object,該參數在過程樣式中是必需的。它用於指定由date_create()函數返回的DateTime對象。麵向對象的樣式不需要任何參數。
返回值:如果成功,則此函數返回DateTimeZone對象;如果失敗,則返回False。
以下示例程序旨在說明PHP中的date_timezone_get()函數:
程序1:
<?php
// Create DateTime object
$date = date_create(null, timezone_open('Asia/Kolkata'));
// Return the timezone of given DateTime
$time_zone = date_timezone_get($date);
// Return the DateTimeZone object
echo timezone_name_get($time_zone);
?>
輸出:
Asia/Kolkata
程序2:
<?php
// Create DateTime object using DateTimeZone
$date = new DateTime(null, new DateTimeZone('Asia/Kolkata'));
// Return the timezone of given DateTime
$time_zone = $date->getTimezone();
// Return the DateTimeZone object
echo $time_zone->getName();
?>
輸出:
Asia/Kolkata
相關文章:
參考: http://php.net/manual/en/datetime.gettimezone.php
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | date_timezone_get() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。