【发布时间】:2015-04-28 17:31:43
【问题描述】:
所以我使用 drupal 6 的 date_timezone_names 来生成时区列表:
/**
* A translated array of timezone names.
* Cache the untranslated array, make the translated array a static variable.
*
* @param $required
* If not required, returned array will include a blank value.
* @return
* an array of timezone names
*/
function date_timezone_names($required = FALSE, $refresh = FALSE) {
static $zonenames;
if (empty($zonenames) || $refresh) {
$cached = cache_get('date_timezone_identifiers_list');
$zonenames = !empty($cached) ? $cached->data : array();
if ($refresh || empty($cached) || empty($zonenames)) {
$data = timezone_identifiers_list(DateTimeZone::ALL_WITH_BC);
// Use include instead of include once in case the function gets
// refreshed via devel or other API and is called more than once.
if (module_exists('date_php4')) {
include('./'. drupal_get_path('module', 'date_php4') .'/date_php4_missing_data.inc');
}
foreach ($data as $delta => $zone) {
// Because many time zones exist in PHP only for backward
// compatibility reasons and should not be used, the list is
// filtered by a regular expression.
if (preg_match('!^((Africa|America|Antarctica|Arctic|Asia|Atlantic|Australia|Europe|Indian|Pacific)/|UTC$)!', $zone)) {
// https://github.com/Br3nda/drupal-module-date/blob/master/date_api.module
$zonenames[$zone] = $zone;
}
}
// If using PHP4, filter the list down to only the timezones
// the PHP4 wrapper has data for.
if (module_exists('date_php4')) {
foreach ($missing_timezone_data as $zone) {
unset($zonenames[$zone]);
}
}
// If using Event, further filter the list down to only
// zones that exist in the event module.
if (module_exists('event') && db_table_exists('event_timezones')) {
$result = db_query("SELECT name FROM {event_timezones} ORDER BY name");
$names = array();
while ($row = db_fetch_array($result)) {
$names[] = str_replace(' ', '_', $row['name']);
}
foreach ($zonenames as $name => $zone) {
if (!in_array($name, $names)) {
unset($zonenames[$name]);
}
}
}
if (!empty($zonenames)) {
cache_set('date_timezone_identifiers_list', $zonenames);
}
}
foreach ($zonenames as $zone) {
$zonenames[$zone] = t($zone);
}
}
$none = array('' => '');
return !$required ? $none + $zonenames : $zonenames;
}
注意它最终会调用timezone_identifiers_list(DateTimeZone::ALL_WITH_BC)
但是这有时会返回不一致的列表...有时列表中存在亚洲/赤塔 (GMT+8) 等时区...有时,列表中不存在该时区....另请注意Asia/Chita 不在 date_php4_missing_data.inc 中
知道为什么会发生这种情况吗? $data = timezone_identifiers_list(DateTimeZone::ALL_WITH_BC); 在什么情况下会返回不一致的时区列表?
另一个有时出现的时区有时不存在:Asia/Srednekolymsk ...请注意,这也不在 date_php4_missing_data.inc 中
【问题讨论】:
-
我相信该列表是从服务器的时区列表中提取的。因此,如果时区不存在,那是因为该服务器不支持它。
标签: php date datetime drupal timezone