PHP timezone_abbreviations_list() 函数
PHP timezone_abbreviations_list() 函数
实例
输出 "act" 时区的夏令时、偏移量和时区名称:
<?php
$tzlist=timezone_abbreviations_list();
print_r($tzlist["act"]);
?>
$tzlist=timezone_abbreviations_list();
print_r($tzlist["act"]);
?>
运行实例 »
定义和用法
timezone_abbreviations_list() 返回包含夏令时、偏移量和时区名称的关联数组。
语法
timezone_abbreviations_list();
技术细节
返回值: | 成功则返回一个关联数组,失败则返回 FALSE。 |
---|---|
PHP 版本: | 5.2+ |
PHP Date/Time 参考手册
相关文章
- PHP 运算符
- PHP 数组
- PHP 函数
- PHP Cookie
- PHP JSON
- PHP array_diff_uassoc() 函数
- PHP array_fill() 函数
- PHP array_push() 函数
- PHP array_reduce() 函数
- PHP array_reverse() 函数
- PHP array_splice() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_walk() 函数
- PHP current() 函数
- PHP krsort() 函数
- PHP natcasesort() 函数
- PHP natsort() 函数
- PHP next() 函数
- PHP sort() 函数
- PHP uasort() 函数