Showing posts with label Magento – Get current store currency details. Show all posts
Showing posts with label Magento – Get current store currency details. 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(); ?>