timezone_name_from_abbr()函數是PHP中的內置函數,用於從縮寫返回時區名稱。該縮寫作為參數發送到timezone_name_from_abbr()函數,並且成功時返回時區名稱,失敗時返回False。
用法:
string timezone_name_from_abbr( $abbr, $gmtoffset, $isdst )
參數:此函數接受上述和以下所述的三個參數:
- $abbr:它是一個強製性參數,用於指定時區縮寫。
- $gmtoffset:它是一個可選參數,以秒為單位指定距GMT的偏移量。默認值為-1,這意味著將返回與abbr對應的第一個找到的時區。
- $isdst:它是一個可選參數,用於指定夏令時指示符。默認值為-1,這意味著在搜索時不會考慮時區是否具有夏時製。
返回值:成功時返回時區名稱,失敗時返回False。
異常:timezone_name_from_abbr()函數是DateTimeZone::listAbbreviations函數的別名。
以下示例程序旨在說明PHP中的timezone_name_from_abbr()函數:
程序1:
<?php
// Displaying the name of timezone using the abbreviation
$abbr = timezone_name_from_abbr("PST");
echo ("PST stands for " . $abbr);
?>
輸出:
PST stands for America/Los_Angeles
程序2:
<?php
// Displaying the name of timezone using the abbreviation
$abbr = timezone_name_from_abbr("", 7200, 0);
echo ("The given parameter stands for " . $abbr);
?>
輸出:
The given parameter stands for Europe/Helsinki
相關文章:
參考: http://php.net/manual/en/function.timezone-name-from-abbr.php
相關用法
- d3.js d3.lab()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 PHP | timezone_name_from_abbr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。