DateTimeZone::listIdentifiers

timezone_identifiers_list

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

DateTimeZone::listIdentifiers -- timezone_identifiers_listReturns a numerically indexed array containing all defined timezone identifiers

Açıklama

Nesne yönelimli kullanım

public static DateTimeZone::listIdentifiers ( int $timezoneGroup = DateTimeZone::ALL , string|null $countryCode = null ) : array

Yordamsal kullanım

timezone_identifiers_list ( int $timezoneGroup = DateTimeZone::ALL , string|null $countryCode = null ) : array

Değiştirgeler

timezoneGroup

One of the DateTimeZone class constants (or a combination).

countryCode

A two-letter ISO 3166-1 compatible country code.

Bilginize: This option is only used when timezoneGroup is set to DateTimeZone::PER_COUNTRY.

Dönen Değerler

Returns the array of timezone identifiers.

Sürüm Bilgisi

Sürüm: Açıklama
8.0.0 Prior to this version, false was returned on failure.
7.1.0 countryCode is nullable now.

Örnekler

Örnek 1 A timezone_identifiers_list() example

<?php
$timezone_identifiers 
DateTimeZone::listIdentifiers();
for (
$i=0$i 5$i++) {
    echo 
"$timezone_identifiers[$i]\n";
}
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

Africa/Abidjan
Africa/Accra
Africa/Addis_Ababa
Africa/Algiers
Africa/Asmara

Ayrıca Bakınız