Showing posts with label magento get current currency symbol and code. Show all posts
Showing posts with label magento get current currency symbol and code. Show all posts

Sunday, 27 July 2014

Get Currency code and symbol in magento


Get Currency code and symbol in magento

Currency Code :

<?php echo $currency_code = Mage::app()->getStore()->getCurrentCurrencyCode(); ?>

Currency Symbol :

<?php echo Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol(); ?>