CakeFest 2024: The Official CakePHP Conference

DateTimeZone::listAbbreviations

timezone_abbreviations_list

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

DateTimeZone::listAbbreviations -- timezone_abbreviations_list返回一个包含 dst (夏令时),时差和时区信息的关联数组。

说明

面向对象风格

public static DateTimeZone::listAbbreviations(): array

过程化风格

返回简写列表,包含历史上所有使用过的简写,这可能会导致既正确又混乱的条目。也会存在冲突,比如 PST 在美国和菲律宾都在有使用。

因此函数返回的列表不适合构建为带选项的数组,以便向用户提供时区选择。

注意:

出于性能考虑,会预先编译此函数的数据。在使用较新的 » timezonedb 时不会更新。

参数

此函数没有参数。

返回值

返回时区简写数组。

示例

示例 #1 timezone_abbreviations_list() 函数的范例:

<?php
$timezone_abbreviations
= DateTimeZone::listAbbreviations();
print_r($timezone_abbreviations["acst"]);
?>

以上示例的输出类似于:

Array
(
    [0] => Array
        (
            [dst] => 1
            [offset] => -14400
            [timezone_id] => America/Porto_Acre
        )

    [1] => Array
        (
            [dst] => 1
            [offset] => -14400
            [timezone_id] => America/Eirunepe
        )

    [2] => Array
        (
            [dst] => 1
            [offset] => -14400
            [timezone_id] => America/Rio_Branco
        )

    [3] => Array
        (
            [dst] => 1
            [offset] => -14400
            [timezone_id] => Brazil/Acre
        )

)

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top