Magento:价格,已格式化但没有货币符号 [英] Magento: Price, formatted but without currency symbol

查看:113
本文介绍了Magento:价格,已格式化但没有货币符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想获取格式化的价格,但没有货币符号,并且只想使用magento的标准功能!

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

那怎么可能? (我不想使用str_replace()...)

How is that possible? (I don't want use str_replace()...)

推荐答案

Mage::getModel('directory/currency')->format(
    $product->getFinalPrice(), 
    array('display'=>Zend_Currency::NO_SYMBOL), 
    false
);

这篇关于Magento:价格,已格式化但没有货币符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆