PHP timezone_identifiers_list 日期时间函数
-
定义和用法
timezone_identifiers_list - 返回一个包含了所有时区标示符的索引数组。 -
版本支持
PHP4 PHP5 PHP7 不支持 v5.2.0(含)+支持 支持 5.3.0 添加可选的 what 和 country 参数。
-
语法
timezone_identifiers_list ( [ int $what = DateTimeZone::ALL [, string $country = NULL ]] )
返回一个包含了所有时区标示符的索引数组。 -
参数
参数 必需的 描述 what 否 DateTimeZone 类中的常量之一。 country 否 由两个字母组成,ISO 3166-1 兼容的国家代码。 -
返回值
成功,返回数组,失败则返回FALSE. -
示例
尝试一下<?php $timezone_identifiers = DateTimeZone::listIdentifiers(); for ($i=0; $i < 5; $i++) { echo "$timezone_identifiers[$i]<br/>"; } ?>
-
相关函数
timezone_abbreviations_list() - 返回一个包含 dst (夏令时),时差和时区信息的关联数组。