PHP Doku:: Returns numerically index array with all timezone identifiers - datetimezone.listidentifiers.html

Verlauf / Chronik / History: (6) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatums- und zeitrelevante ErweiterungenDatum und UhrzeitThe DateTimeZone classDateTimeZone::listIdentifiers

Ein Service von Reinhard Neidl - Webprogrammierung.

The DateTimeZone class

<<DateTimeZone::listAbbreviations

The DateInterval class>>

DateTimeZone::listIdentifiers

(PHP 5 >= 5.2.0)

DateTimeZone::listIdentifiersReturns numerically index array with all timezone identifiers

Beschreibung

Objektorientierter Stil

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

Prozeduraler Stil

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

Parameter-Liste

what

One of DateTimeZone class constants.

country

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

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

Rückgabewerte

Returns array on successIm Fehlerfall wird FALSE zurückgegeben..

Changelog

Version Beschreibung
5.3.0 Added the optional what and country parameters.

Beispiele

Beispiel #1 A timezone_identifiers_list() example

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Siehe auch


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
chema at garridodiaz dot com
19.02.2010 11:50
I use this time zone select:

<select id="TIMEZONE" name="TIMEZONE">
    <?php
    $timezone_identifiers
= DateTimeZone::listIdentifiers();
    foreach(
$timezone_identifiers as $value ){
        if (
preg_match( '/^(America|Antartica|Arctic|Asia|Atlantic|Europe|Indian|Pacific)\//', $value ) ){
           
$ex=explode("/",$value);//obtain continent,city   
           
if ($continent!=$ex[0]){
                if (
$continent!="") echo '</optgroup>';
                echo
'<optgroup label="'.$ex[0].'">';
            }
   
           
$city=$ex[1];
           
$continent=$ex[0];
            echo
'<option value="'.$value.'">'.$city.'</option>';               
        }
    }
   
?>
        </optgroup>
    </select>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)