DateTimeZone::listIdentifiers

timezone_identifiers_list

(PHP 5 >= 5.2.0, PHP 7)

DateTimeZone::listIdentifiers -- timezone_identifiers_listすべてのタイムゾーン識別子を含む配列を返す

説明

オブジェクト指向型

public static DateTimeZone::listIdentifiers ([ int $what = DateTimeZone::ALL [, string $country = NULL ]] ) : array

手続き型

timezone_identifiers_list ([ int $what = DateTimeZone::ALL [, string $country = NULL ]] ) : array

パラメータ

what

DateTimeZone のクラス定数のいずれか。

country

2 文字の ISO 3166-1 互換の国コード。

注意: このオプションを使用するのは、whatDateTimeZone::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

参考