PHP timezone_name_from_abbr() 函數(shù)
PHP timezone_name_from_abbr() 函數(shù)
實(shí)例
根據(jù)時區(qū)縮略語返回時區(qū)名稱:
<?php
echo timezone_name_from_abbr("EST") . "<br>";
echo timezone_name_from_abbr("",7200,0);
?>
echo timezone_name_from_abbr("EST") . "<br>";
echo timezone_name_from_abbr("",7200,0);
?>
運(yùn)行實(shí)例 ?
定義和用法
timezone_name_from_abbr() 根據(jù)時區(qū)縮略語返回時區(qū)名稱。
語法
timezone_name_from_abbr(abbr,gmtoffset,isdst);
參數(shù) | 描述 |
---|---|
abbr | 必需。規(guī)定時區(qū)縮略語。 |
gmtoffset | 可選。規(guī)定相對于 GMT 的以秒為單位的偏移量。默認(rèn)為 -1,表示返回第一個被找到的匹配縮略語的時區(qū)。否則搜索精確的偏移量。如果沒有找到,則返回任意偏移量的第一個時區(qū)。 |
isdst |
可選。規(guī)定夏令時指示器。
|
技術(shù)細(xì)節(jié)
返回值: | 成功則返回時區(qū)名稱,失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5.1.3+ |

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 超級全局變量
- PHP For 循環(huán)
- PHP 函數(shù)
- PHP 面向?qū)ο?/a>
- PHP 包含文件 include 和 require 語句
- PHP Secure E-mails
- PHP array_chunk() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP current() 函數(shù)
- PHP end() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP FTP 函數(shù)
- PHP 5 MySQLi 函數(shù)