(PHP 5 >= 5.2.0)
DateTimeZone::listIdentifiers -- timezone_identifiers_list — Returns a numerically indexed array containing all defined timezone identifiers
Stile orientato agli oggetti
$what
= DateTimeZone::ALL
[, string $country
= NULL
]] )Stile procedurale
what
One of DateTimeZone class constants.
country
A two-letter ISO 3166-1 compatible country code.
Nota: This option is only used when
what
is set toDateTimeZone::PER_COUNTRY
.
Returns array on success o FALSE
in caso di fallimento.
Versione | Descrizione |
---|---|
5.3.0 |
Added the optional what and
country parameters.
|
Example #1 A timezone_identifiers_list() example
<?php
$timezone_identifiers = DateTimeZone::listIdentifiers();
for ($i=0; $i < 5; $i++) {
echo "$timezone_identifiers[$i]\n";
}
?>
Il precedente esempio visualizzerĂ qualcosa simile a:
Africa/Abidjan Africa/Accra Africa/Addis_Ababa Africa/Algiers Africa/Asmara