PHP Doku:: Get the locale for which the formatter was created. - messageformatter.getlocale.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe MessageFormatter classMessageFormatter::getLocale -- msgfmt_get_locale

Ein Service von Reinhard Neidl - Webprogrammierung.

The MessageFormatter class

<<MessageFormatter::getErrorMessage -- msgfmt_get_error_message

MessageFormatter::getPattern -- msgfmt_get_pattern>>

MessageFormatter::getLocale

msgfmt_get_locale

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

MessageFormatter::getLocale -- msgfmt_get_localeGet the locale for which the formatter was created.

Beschreibung

Object oriented style

string MessageFormatter::getLocale ( void )

Procedural style

string msgfmt_get_locale ( NumberFormatter $formatter )

Get the locale for which the formatter was created.

Parameter-Liste

formatter

The formatter resource

Rückgabewerte

The locale name

Beispiele

Beispiel #1 msgfmt_get_locale() example

<?php
$fmt 
msgfmt_create('en_US'"Number {0,number}");
echo 
msgfmt_get_locale($fmt);
?>

Beispiel #2 OO example

<?php
$fmt 
= new MessageFormatter('en_US'"Number {0,number}");
echo 
$fmt->getLocale();
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

en_US

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