PHP timezone_name_from_abbr() 函数
PHP timezone_name_from_abbr() 函数
实例
根据时区缩略语返回时区名称:
<?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);
?>
运行实例 »
定义和用法
timezone_name_from_abbr() 根据时区缩略语返回时区名称。
语法
timezone_name_from_abbr(abbr,gmtoffset,isdst);
参数 | 描述 |
---|---|
abbr | 必需。规定时区缩略语。 |
gmtoffset | 可选。规定相对于 GMT 的以秒为单位的偏移量。默认为 -1,表示返回第一个被找到的匹配缩略语的时区。否则搜索精确的偏移量。如果没有找到,则返回任意偏移量的第一个时区。 |
isdst |
可选。规定夏令时指示器。
|
技术细节
返回值: | 成功则返回时区名称,失败则返回 FALSE。 |
---|---|
PHP 版本: | 5.1.3+ |
PHP Date/Time 参考手册
相关文章
- PHP EOF(heredoc) 使用说明
- PHP 超级全局变量
- PHP For 循环
- PHP 函数
- PHP 面向对象
- PHP 包含文件 include 和 require 语句
- PHP Secure E-mails
- PHP array_chunk() 函数
- PHP array_count_values() 函数
- PHP array_fill_keys() 函数
- PHP array_key_first() 函数
- PHP array_pop() 函数
- PHP array_walk() 函数
- PHP current() 函数
- PHP end() 函数
- PHP shuffle() 函数
- PHP sort() 函数
- PHP 5 Date/Time 函数
- PHP FTP 函数
- PHP 5 MySQLi 函数