Question

How can I change format a price with giving some specific currency code?

I search it on google but only thing which I find is to format price based on selected currency.

But I want to format that price with a specific currency.

Is there is any way to do that??

Any help will be appreciated.

Was it helpful?

Solution

you can format price with below code.

$price=10;
$symbol=Mage::app()->getLocale()->currency('EUR')->getSymbol();
$fromatprice=str_replace($symbol,'',Mage::app()->getLocale()->currency('EUR')->toCurrency($price)); 
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top