Magento:价格,已格式化但没有货币符号
我想要获得格式化的价格,但没有货币符号,并且我只想使用 magento 的标准功能!
$product->getFinalPrice(); => 19.9900
Mage::helper('core')->formatPrice($product->getFinalPrice(), false); => 19,99 €
Mage::helper('mymodul')->foobar($product->getFinalPrice()); => 19,99
这怎么可能? (我不想使用 str_replace()...)
I want to get a formatted price but without the currency symbol and I want use only standard functionality of magento!
$product->getFinalPrice(); => 19.9900
Mage::helper('core')->formatPrice($product->getFinalPrice(), false); => 19,99 €
Mage::helper('mymodul')->foobar($product->getFinalPrice()); => 19,99
How is that possible? (I don't want use str_replace()...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为此只需要下面一行代码。试试这个
Just below one line code is needed for that. Try this
您可以使用
目录/货币
模型:You could use the
directory/currency
model: