1

Ubuntu 13.04 上的 apache 出现以下问题(不确定其他操作系统)我也尝试使用 fr_LU 但无济于事

不起作用 - 返回 NaN

setlocale(LC_MONETARY, 'fr_FR.UTF-8');
$currency_formatter = NumberFormatter::create(setlocale(LC_MONETARY, "0"), NumberFormatter::CURRENCY);
$currency_formatter->formatCurrency(100, 'USD');

我在这里想念什么?

我机器上 locale -a 的结果如下:

  C
    C.UTF-8
    de_AT.utf8
    de_BE.utf8
    de_CH.utf8
    de_DE.utf8
    de_LI.utf8
    de_LU.utf8
    en_AG
    en_AG.utf8
    en_AU.utf8
    en_BW.utf8
    en_CA.utf8
    en_DK.utf8
    en_GB.utf8
    en_HK.utf8
    en_IE.utf8
    en_IN
    en_IN.utf8
    en_NG
    en_NG.utf8
    en_NZ.utf8
    en_PH.utf8
    en_SG.utf8
    en_US
    en_US.iso88591
    en_US.utf8
    en_ZA.utf8
    en_ZM
    en_ZM.utf8
    en_ZW.utf8
    fr_BE.utf8
    fr_CA.utf8
    fr_CH.utf8
    fr_FR
    fr_FR.iso88591
    fr_FR.utf8
    fr_LU.utf8
    ja_JP.utf8
    POSIX
    zh_CN.utf8
    zh_SG.utf8
4

1 回答 1

4

关注了评论在https://bugs.php.net/bug.php?id=54538如下:“我观察到了一种解决方法。设置 LC_MESSAGES 不会影响 NumberFormatter 并且同时足以进行 gettext 翻译。 "

我评论说这是一种解决方法,它对我有用。这就是我的代码在更改后的样子

putenv('LC_MESSAGES='.$locale);
setlocale(LC_MESSAGES, $locale);
setlocale(LC_TIME, $locale);
//Don't set LC_NUMERIC and LC_MONETARY as these may interfere with number formatter and cause to return NaN(https://bugs.php.net/bug.php?id=54538)
//setlocale(LC_NUMERIC, $locale);
//setlocale(LC_MONETARY, $locale);

$currency_formatter = NumberFormatter::create(setlocale(LC_MESSAGES, "0"), NumberFormatter::CURRENCY);
于 2013-05-16T19:32:45.947 回答