尝试格式化货币时,似乎得到了非常不一致的结果。在PHP中,我正在使用https://www.php.net/manual/zh/class.numberformatter.php。我有以下演示代码
echo getInternationallyFormattedCurrency($number, 'tl-PH', 'PHP');
echo '<br/>';
echo getInternationallyFormattedCurrency($number, 'fil-PH', 'PHP');
echo '<br/>';
echo getInternationallyFormattedCurrency($number, 'en-US', 'PHP');
echo '<br/>';
echo '<br/>';
echo getInternationallyFormattedCurrency($number, 'tl_PH', 'USD');
echo '<br/>';
echo getInternationallyFormattedCurrency($number, 'fil_PH', 'USD');
echo '<br/>';
echo getInternationallyFormattedCurrency($number, 'en_US', 'USD');
echo '<br/>';
当我在本地主机上运行此版本(版本为PHP 7.3.7,但已更新为与服务器的PHP版本7.3.12匹配)时,我得到了:
₱5,125.99
PHP 5,125.99
$5,125.99
$5,125.99
$5,125.99
但是,当我在服务器(PHP版本7.3.12)上运行它时,会得到以下信息:
₱ 5125.99
₱5,125.99
$ 5125.99
$ 5125.99
$5,125.99
为什么会有所不同?哪个实际上是正确的?
我也需要JS完全相同的功能。因此,在https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat上,我输入了以下等效代码:
var number = 5125.99;
console.log(new Intl.NumberFormat('tl-PH', { style: 'currency', currency: 'PHP' }).format(number)); console.log(new Intl.NumberFormat('fil-PH', { style: 'currency', currency: 'PHP' }).format(number)); console.log(new Intl.NumberFormat('en-US', { style: 'currency', currency: 'PHP' }).format(number)); console.log(new Intl.NumberFormat('tl-PH', { style: 'currency', currency: 'USD' }).format(number)); console.log(new Intl.NumberFormat('fil-PH', { style: 'currency', currency: 'USD' }).format(number)); console.log(new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(number)); 我得到这个:
"PHP 5,125.99" "₱5,125.99" "PHP 5,125.99" "$5,125.99" "$5,125.99" "$5,125.99" 所以-这是另一个结果。我需要一种格式化PHP和JS之间的货币一致性的方法。我该怎么做呢?
更新1:
我的本地计算机的ICU版本为64.2,而服务器的ICU版本为4.2.1。我将查看托管服务提供商是否可以将ICU版本更新为最新版本。这可能可以解释本地计算机输出与服务器输出之间的差异。
仍然不确定为什么JS表现不同。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。