gpt4 book ai didi

php - magento 中的货币符号

转载 作者:可可西里 更新时间:2023-11-01 13:47:31 24 4
gpt4 key购买 nike

我用两种不同的语言创建了两个 Magento 商店 View :

  1. 英语
  2. 荷兰语

英语(欧元)货币符号以正确的方式出现,如 20.00 欧元,但对于荷兰语 View ,它显示为 20,00 欧元。我想为两个 View 设置默认符号 €,因为欧元是相同的。我怎样才能在 Magento 中实现它。

最佳答案

您可以更改区域设置

这里是英文的例子。为此,您必须对语言文件进行细微更改。以下是文件的目录结构。

=> root/lib/Zend/Locale/Data/en.xml (For English Language)

=> around line 2611 you can see following code.
<currencyFormat>
<pattern>¤#,##0.00;(¤#,##0.00)</pattern>
</currencyFormat>

=> Now Change above code with Following code.

<currencyFormat>
<pattern>#,##0.00 ¤;(#,##0.00 ¤)</pattern>
</currencyFormat>

您可以将其设置为荷兰语

关于php - magento 中的货币符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16789871/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com