unicode timezone list here....may help in projects
http://unicode.org/repos/cldr/trunk/common/supplemental/windowsZones.xml
在这你可找到 PHP 所支持的所有时区的列表,可用于诸如 date_default_timezone_set() 等函数。
Note: 最新版的时区数据库可从 PECL 的 » timezonedb 进行安装。
Note: 基于时区数据库版本的列表 2017.3.
unicode timezone list here....may help in projects
http://unicode.org/repos/cldr/trunk/common/supplemental/windowsZones.xml
Just use DateTimeZone::listIdentifiers()
Get a list of Timezones.
<?php
foreach(timezone_abbreviations_list() as $abbr => $timezone){
foreach($timezone as $val){
if(isset($val['timezone_id'])){
var_dump($abbr,$val['timezone_id']);
}
}
}
?>