Magento2 – How to Get Country Name Using Country Code

Magento2 – How to Get Country Name Using Country Code

Create Instance to Object Manager then inject dependency to perform your query: $objectManager = \Magento\Framework\App\ObjectManager::getInstance();

Now load your country by the following code:

 $country = $objectManager->create('\Magento\Directory\Model\Country')->load('AE')->getName();</pre>

While AE is the country code. The output of above code will be: United Arab Emirates

Leave a Reply

Your email address will not be published. Required fields are marked *