How to get currency symbol?

来源:互联网 发布:php 调用js 编辑:程序博客网 时间:2024/04/30 05:41

 

Here’s another way that might work for you:

Mage::app()->getLocale()->currency(Mage::app()->getStore()->
getCurrentCurrencyCode())->getSymbol()


 

or if you want to pass a certain currency code simply specify it:

Mage::app()->getLocale()->currency(’EUR’)->getSymbol()

 

thank you guy...