PHP Doku:: Returns an appropriately localized display name for the input locale - locale.getdisplayname.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The Locale class

<<Locale::getDisplayLanguage -- locale_get_display_language

Locale::getDisplayRegion -- locale_get_display_region>>

Locale::getDisplayName

locale_get_display_name

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

Locale::getDisplayName -- locale_get_display_nameReturns an appropriately localized display name for the input locale

Beschreibung

Object oriented style

static string Locale::getDisplayName ( string $locale [, string $in_locale ] )

Procedural style

string locale_get_display_name ( string $locale [, string $in_locale ] )

Returns an appropriately localized display name for the input locale. If is NULL then the default locale is used.

Parameter-Liste

locale

The locale to return a display name for.

in_locale

optional format locale

Rückgabewerte

Display name of the locale in the format appropriate for $in_locale.

Beispiele

Beispiel #1 locale_get_display_name() example

<?php
echo locale_get_display_name('sl-Latn-IT-nedis''en');
echo 
";\n";
echo 
locale_get_display_name('sl-Latn-IT-nedis''fr');
echo 
";\n";
echo 
locale_get_display_name('sl-Latn-IT-nedis''de');
?>

Beispiel #2 OO example

<?php
echo Locale::getDisplayName('sl-Latn-IT-nedis''en');
echo 
";\n";
echo 
Locale::getDisplayName('sl-Latn-IT-nedis''fr');
echo 
";\n";
echo 
Locale::getDisplayName('sl-Latn-IT-nedis''de');
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Slovenian (Latin, Italy, Natisone dialect);
slov\xc3\xa8ne (latin, Italie, dialecte de Natisone;
Slowenisch (Lateinisch, Italien, NEDIS)
  

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