Magento 获取当前货币和货币符How to get current currency in Magento

来源:互联网 发布:php输出当前时间戳 编辑:程序博客网 时间:2024/05/17 01:26

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代码  收藏代码
  1. <?php echo $currency_code = Mage::app()->getStore()->getCurrentCurrencyCode(); ?>  

 

If you looking for current currency symbol use :

Php代码  收藏代码
  1. <?php echo Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol(); ?>  

source: http://justcoding.iteye.com/blog/2124552




0 0
原创粉丝点击