當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP DateTimeZone::getName()用法及代碼示例


DateTimeZone::getName()函數是PHP中的內置函數,用於返回創建的時區的名稱。

用法:

DateTimeZone::getName()

參數:該函數不接受任何參數。


返回值::此函數返回創建的時區的名稱。

以下示例程序旨在說明DateTimeZone::getName()函數:

程序1:

<?php 
// PHP program to illustrate DateTimeZone::getName() 
// function 
  
// Initialising a timezone 
$timeZone = "Asia/Kolkata"; 
    
// Creating DateTimeZone() object with 
// the above timezone 
$DatetimeZone = new DateTimeZone($timeZone);  
    
// Getting the name of timezone   
print_r($DatetimeZone->getName());  
?>

輸出:

Asia/Kolkata

程序2:

<?php 
// PHP program to illustrate DateTimeZone::getName() 
// function 
    
// Creating DateTimeZone() object with 
// a specific timezone 
$DatetimeZone = new DateTimeZone("Asia/Singapore");  
    
// Getting the name of timezone   
print_r($DatetimeZone->getName());  
?>

輸出:

Asia/Singapore

參考



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | DateTimeZone::getName() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。