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(); ?>
本文详细介绍了如何在Magento前端获取当前使用的货币代码和货币符号,通过使用Magento框架提供的方法,开发者可以轻松地在网站前端展示不同货币单位。
270

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



