downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<NumberFormatter::getErrorMessageNumberFormatter::getPattern>
Last updated: Thu, 26 Jun 2008

NumberFormatter::getLocale

numfmt_get_locale

(No version information available, might be only in CVS)

numfmt_get_locale — Get formatter locale

Description

Object oriented style

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

Procedural style

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

Get formatter locale name.

Parameters

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.

Return Values

The locale name used to create the formatter.

Examples

Example #1 numfmt_get_locale() example

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

The above example will output:

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


add a noteadd a note User Contributed Notes
Get formatter locale
There are no user contributed notes for this page.




<NumberFormatter::getErrorMessageNumberFormatter::getPattern>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs