PHP Doku:: Gets the region for the input locale - locale.getregion.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe Locale classLocale::getRegion -- locale_get_region

Ein Service von Reinhard Neidl - Webprogrammierung.

The Locale class

<<Locale::getPrimaryLanguage -- locale_get_primary_language

Locale::getScript -- locale_get_script>>

Locale::getRegion

locale_get_region

(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)

Locale::getRegion -- locale_get_regionGets the region for the input locale

Beschreibung

Object oriented style

static string Locale::getRegion ( string $locale )

Procedural style

string locale_get_region ( string $locale )

Gets the region for the input locale.

Parameter-Liste

locale

The locale to extract the region code from

Rückgabewerte

The region subtag for the locale or NULL if not present

Beispiele

Beispiel #1 locale_get_region() example

<?php
echo locale_get_region('de-CH-1901');
?>

Beispiel #2 OO example

<?php
echo Locale::getRegion('de-CH-1901');
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

CH

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



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",...)