Is it possible to get the "name of the country" using the "currency code" in purple?

I need to get the name of the country using the currency code that I have.

Is there a possibility?

+6
source share
2 answers

Create your own module in which you associate different currencies with countries. Then filter the values ​​in the module table and link the countries to a specific currency. Below is a link that lists the currency and list of countries https://en.wikipedia.org/wiki/List_of_countries_and_capitals_with_currency_and_language

+1
source

Are you sure you want the name of the country to use the currency code? If you want to get the name of the country using the country code, then

<?php $country = Mage::getModel('directory/country')->loadByCode($code); echo $country->getName(); ?> 
0
source

All Articles