PHP Doku:: Gets the primary language for the input locale - locale.getprimarylanguage.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The Locale class

<<Locale::getKeywords -- locale_get_keywords

Locale::getRegion -- locale_get_region>>

Locale::getPrimaryLanguage

locale_get_primary_language

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

Locale::getPrimaryLanguage -- locale_get_primary_languageGets the primary language for the input locale

Beschreibung

Object oriented style

static string Locale::getPrimaryLanguage ( string $locale )

Procedural style

string locale_get_primary_language ( string $locale )

Gets the primary language for the input locale

Parameter-Liste

locale

The locale to extract the primary language code from

Rückgabewerte

The language code associated with the language or NULL in case of error.

Beispiele

Beispiel #1 locale_get_primary_language() example

<?php
echo locale_get_primary_language('zh-Hant');
?>

Beispiel #2 OO example

<?php
echo Locale::getPrimaryLanguage('zh-Hant');
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

zh

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