Php/func date timezone identifiers list
来自菜鸟教程
PHP timezone_identifiers_list()函数
例
打印非洲的所有时区:
<?php print_r(timezone_identifiers_list(1)); ?>
定义和用法
timezone_identifiers_list()返回包含所有时区标识符的索引数组。
句法
timezone_identifiers_list(what, country)
参数值
参数 | 描述 |
---|---|
what | 可选的。指定DateTimeZone类常量
|
country | 可选的。指定两个字母的ISO 3166-1兼容国家代码 |
技术细节
返回值: | 成功返回索引数组。失败时为假 |
PHP版本: | 5.2+ |
PHP更新日志: | PHP 5.3:可选
what and country 添加了参数 |