(PHP 5 >= 5.2.0, PHP 7, PHP 8)
DateTimeZone::listIdentifiers -- timezone_identifiers_list — 返回一个包含了所有时区标示符的索引数组。
面向对象风格
$what = DateTimeZone::ALL, string $country = null): array过程化风格
whatDateTimeZone 类中的常量之一。
country由两个字母组成,ISO 3166-1 兼容的国家代码。
注意: 只有当
what被设置为DateTimeZone::PER_COUNTRY时,该选项才会被使用。
   成功,返回数组,失败则返回false.
  
| 版本 | 说明 | 
|---|---|
| 5.3.0 | 添加可选的 what和country参数。 | 
示例 #1 timezone_identifiers_list() 函数的范例:
<?php
$timezone_identifiers = DateTimeZone::listIdentifiers();
for ($i=0; $i < 5; $i++) {
    echo "$timezone_identifiers[$i]\n";
}
?>
以上例程的输出类似于:
Africa/Abidjan Africa/Accra Africa/Addis_Ababa Africa/Algiers Africa/Asmara