小码哥的IT人生

首页 > PHP > php基础

PHP timezone_identifiers_list() 日期 时间 函数 详解

php基础 2022-06-06 17:08:12小码哥的IT人生shichen

PHP timezone_identifiers_list() 函数

实例

输出亚洲的所有时区:

<?php
print_r(timezone_identifiers_list(16));
?>

完整实例:

<!DOCTYPE html>
<html>
<body>
<h3>输出亚洲的所有时区</h3>
<?php
print_r(timezone_identifiers_list(16));
?>
<h3>输出所有时区</h3>
<?php
print_r(timezone_identifiers_list());
?>
</body>
</html>

 

定义和用法

timezone_identifiers_list() 返回包含所有时区标识符的索引数组。

语法

timezone_identifiers_list(what,country);
参数 描述
what

可选。规定 DateTimeZone 类常量

  • 1 = AFRICA
  • 2 = AMERICA
  • 4 = ANTARCTICA
  • 8 = ARCTIC
  • 16 = ASIA
  • 32 = ATLANTIC
  • 64 = AUSTRALIA
  • 128 = EUROPE
  • 256 = INDIAN
  • 512 = PACIFIC
  • 1024 = UTC
  • 2047 = ALL
  • 4095 = ALL_WITH_BC
  • 4096 = PER_COUNTRY
country 可选。规定两个字母的 ISO 3166-1 兼容的国家代码。

技术细节

返回值: 若成功则返回一个数值数组,失败则返回 FALSE。
PHP 版本: 5.2+
更新日志: PHP 5.3:新增可选的 whatcountry 参数。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024