DateTimeZone::listIdentifiers

timezone_identifiers_list

(PHP 5 >= 5.2.0, PHP 7)

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

Descrierea

Stil obiect-orientat

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

Stil procedural

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

Parametri

what

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

country

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

Notă: This option is only used when what is set to DateTimeZone::PER_COUNTRY.

Valorile întoarse

Returns array on success sau FALSE în cazul eșecului.

Istoricul schimbărilor

Versiune Descriere
5.3.0 Added the optional what and country parameters.

Exemple

Example #1 A timezone_identifiers_list() example

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

Exemplul de mai sus va afișa ceva similar cu:

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

A se vedea și