We know Magento support multiple currency. I have found the solution to check current currency in the Magento site frontend
To get Current Currency
- <?php echo $currency_code = Mage::app()->getStore()->getCurrentCurrencyCode(); ?>
If you looking for current currency symbol use :
- <?php echo Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol(); ?>
source: http://justcoding.iteye.com/blog/2124552
Magento多币种支持
本文介绍了如何在Magento网站前端获取当前货币代码及符号的方法。通过简单的PHP代码即可实现这一功能,帮助开发者更好地处理多币种环境下的显示问题。

1850

被折叠的 条评论
为什么被折叠?



