Magento:以当前货币获得价格

dmS*_*azi 2 magento

我有一个扩展,在选项卡的主页面上显示产品.它使用以下代码来获得产品的价格

$price = $_product->getPrice();

然后使用以下代码显示它

echo '<span class="price">'.number_format($price,2).'</span>'

它在基础货币上运行正常但是当选择另一种货币时,它不会将价格转换为该货币.

如何以当前货币显示价格?

Muk*_*esh 6

试试这个

$price = number_format($price,2);

$formatedPrice = Mage::helper('core')->currency($price, true, false);

echo '<span class="price">'.$formatedPrice.'</span>'
Run Code Online (Sandbox Code Playgroud)