(PHP 5 >= 5.2.0, PHP 7)
DateTimeZone::listIdentifiers -- timezone_identifiers_list — Returns a numerically indexed array containing all defined timezone identifiers
Object oriented style
$timezoneGroup
= DateTimeZone::ALL
[, string $countryCode
= NULL
]] ) : arrayProcedural style
$timezoneGroup
= DateTimeZone::ALL
[, string $countryCode
= NULL
]] ) : array
timezoneGroup
One of the DateTimeZone class constants (or a combination).
countryCode
A two-letter ISO 3166-1 compatible country code.
Note: This option is only used when
timezoneGroup
is set toDateTimeZone::PER_COUNTRY
.
Returns array on success or FALSE
on failure.
Version | Description |
---|---|
5.3.0 |
Added the optional timezoneGroup and
countryCode parameters.
|
Example #1 A timezone_identifiers_list() example
<?php
$timezone_identifiers = DateTimeZone::listIdentifiers();
for ($i=0; $i < 5; $i++) {
echo "$timezone_identifiers[$i]\n";
}
?>
The above example will output something similar to:
Africa/Abidjan Africa/Accra Africa/Addis_Ababa Africa/Algiers Africa/Asmara