DateTimeZone::listIdentifiers
timezone_identifiers_list
(PHP 5 >= 5.2.0)
DateTimeZone::listIdentifiers -- timezone_identifiers_list — Returns numerically index array with all timezone identifiers
Açıklama
Nesne yönelimli kullanım
public static array DateTimeZone::listIdentifiers
([ int
$what = DateTimeZone::ALL
[, string $country = NULL
]] )Yordamsal kullanım
Değiştirgeler
-
what -
One of DateTimeZone class constants.
-
country -
A two-letter ISO 3166-1 compatible country code.
Bilginize: This option is only used when
whatis set toDateTimeZone::PER_COUNTRY.
Dönen Değerler
Returns array on success başarısızlık durumunda FALSE döner.
Sürüm Bilgisi
| Sürüm: | Açıklama |
|---|---|
| 5.3.0 |
Added the optional what and
country parameters.
|
Ö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
- timezone_abbreviations_list() - DateTimeZone::listAbbreviations işlevinin takma adıdır
There are no user contributed notes for this page.
