<var id="rq0i0"><optgroup id="rq0i0"><button id="rq0i0"></button></optgroup></var>
  • <nobr id="rq0i0"><noframes id="rq0i0"><ins id="rq0i0"></ins>

    NumberFormatter::getLocale

    numfmt_get_locale

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

    NumberFormatter::getLocale -- numfmt_get_localeGet formatter locale

    說明

    面向?qū)ο箫L(fēng)格

    public NumberFormatter::getLocale(int $type = ULOC_ACTUAL_LOCALE): string|false

    過程化風(fēng)格

    numfmt_get_locale(NumberFormatter $formatter, int $type = ULOC_ACTUAL_LOCALE): string|false

    Get formatter locale name.

    參數(shù)

    formatter

    NumberFormatter object.

    type

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

    返回值

    The locale name used to create the formatter, or false on failure.

    范例

    示例 #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 );
    ?>

    以上例程會輸出:

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

    參見