我正面临magento多货币商店的货币兑换问题。我正在制作一个自定义的magento主题。在价格显示检查我写了这样的代码,但不幸的是 货币变化无效。
<div class="price_list">
<p>List Price: <?php echo Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol();?><?php echo number_format($price,2); ?></p>
<p><span>Sale Price: <?php echo Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol();?><?php echo number_format($specialprice,2); ?></span></p>
</div>
所以我需要一个解决方案如何将这些价格函数称为我的主题,好像多货币将正常运作
感谢
答案 0 :(得分:2)
尝试使用Mage::helper('core')->currency($value)
默认情况下获取当前商店并格式化值。