PHP Doku:: Get formatter locale - numberformatter.getlocale.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsThe NumberFormatter classNumberFormatter::getLocale -- numfmt_get_locale

Ein Service von Reinhard Neidl - Webprogrammierung.

The NumberFormatter class

<<NumberFormatter::getErrorMessage -- numfmt_get_error_message

NumberFormatter::getPattern -- numfmt_get_pattern>>

NumberFormatter::getLocale

numfmt_get_locale

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

NumberFormatter::getLocale -- numfmt_get_localeGet formatter locale

Beschreibung

Object oriented style

string NumberFormatter::getLocale ([ int $type ] )

Procedural style

string numfmt_get_locale ( NumberFormatter $fmt [, int $type ] )

Get formatter locale name.

Parameter-Liste

fmt

NumberFormatter object.

type

You can choose between valid and actual locale ( Locale::VALID_LOCALE, Locale::ACTUAL_LOCALE, respectively). The default is the actual locale.

Rückgabewerte

The locale name used to create the formatter.

Beispiele

Beispiel #1 numfmt_get_locale() example

<?php
$req     
'fr_FR_PARIS';
$fmt     numfmt_create$req,  NumberFormatter::DECIMAL);
$res_val numfmt_get_locale$fmtLocale::VALID_LOCALE );
$res_act numfmt_get_locale$fmtLocale::ACTUAL_LOCALE );
printf"Requested locale name: %s\nValid locale name: %s\nActual locale name: %s\n",
         
$req$res_val$res_act );
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Requested locale name: fr_FR_PARIS
Valid locale name: fr_FR
Actual locale name: fr

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