How to Get country name from country code in Magento 2?Magento 2 - Get country in billing addressMagento 2.2.4 Change Country NamesMagento 2.3.0 Get Country NameGet Store/Website by Language/Countrymagento 2 : Get country from IP addressHow to customize Locale country codeGet the country code of website userUpdating country name in magento 2Magento 2.2.4 Change Country NamesMagento 2 :Get country code from Country NameMagento 2.3.0 Get Country NameHow to get country dial code for telephone number in Magento 2?

Is it acceptable for a professor to tell male students to not think that they are smarter than female students?

Detention in 1997

Why didn't Boeing produce its own regional jet?

What are some good books on Machine Learning and AI like Krugman, Wells and Graddy's "Essentials of Economics"

How to prevent "they're falling in love" trope

What do you call someone who asks many questions?

How do I gain back my faith in my PhD degree?

Avoiding the "not like other girls" trope?

Unlock My Phone! February 2018

Solving a recurrence relation (poker chips)

Intersection Puzzle

Why do bosons tend to occupy the same state?

How could indestructible materials be used in power generation?

Is it possible to create a QR code using text?

Can compressed videos be decoded back to their uncompresed original format?

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

Why was the shrinking from 8″ made only to 5.25″ and not smaller (4″ or less)?

Do UK voters know if their MP will be the Speaker of the House?

What killed these X2 caps?

Little known, relatively unlikely, but scientifically plausible, apocalyptic (or near apocalyptic) events

How to tell a function to use the default argument values?

Avoiding direct proof while writing proof by induction

Is it inappropriate for a student to attend their mentor's dissertation defense?

Mathematica command that allows it to read my intentions



How to Get country name from country code in Magento 2?


Magento 2 - Get country in billing addressMagento 2.2.4 Change Country NamesMagento 2.3.0 Get Country NameGet Store/Website by Language/Countrymagento 2 : Get country from IP addressHow to customize Locale country codeGet the country code of website userUpdating country name in magento 2Magento 2.2.4 Change Country NamesMagento 2 :Get country code from Country NameMagento 2.3.0 Get Country NameHow to get country dial code for telephone number in Magento 2?













8















i want to get country name from country code, i got the country code from the data order like this :



$data = $order->getShippingAddress()->getData();
$countryCode = $data['country_id'];
echo $countryCode;


it will print 'US' or any other country code, is there a way to get the country name from this country code?










share|improve this question
























  • Have you check code for get country name?

    – Rakesh Jesadiya
    Feb 13 '17 at 5:40















8















i want to get country name from country code, i got the country code from the data order like this :



$data = $order->getShippingAddress()->getData();
$countryCode = $data['country_id'];
echo $countryCode;


it will print 'US' or any other country code, is there a way to get the country name from this country code?










share|improve this question
























  • Have you check code for get country name?

    – Rakesh Jesadiya
    Feb 13 '17 at 5:40













8












8








8


1






i want to get country name from country code, i got the country code from the data order like this :



$data = $order->getShippingAddress()->getData();
$countryCode = $data['country_id'];
echo $countryCode;


it will print 'US' or any other country code, is there a way to get the country name from this country code?










share|improve this question
















i want to get country name from country code, i got the country code from the data order like this :



$data = $order->getShippingAddress()->getData();
$countryCode = $data['country_id'];
echo $countryCode;


it will print 'US' or any other country code, is there a way to get the country name from this country code?







magento2 model country-regions






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 13 '17 at 4:49









Manthan Dave

7,97621539




7,97621539










asked Feb 13 '17 at 4:49









simple guysimple guy

1,07421542




1,07421542












  • Have you check code for get country name?

    – Rakesh Jesadiya
    Feb 13 '17 at 5:40

















  • Have you check code for get country name?

    – Rakesh Jesadiya
    Feb 13 '17 at 5:40
















Have you check code for get country name?

– Rakesh Jesadiya
Feb 13 '17 at 5:40





Have you check code for get country name?

– Rakesh Jesadiya
Feb 13 '17 at 5:40










4 Answers
4






active

oldest

votes


















21














Create Block file,



 public function __construct(
MagentoDirectoryModelCountryFactory $countryFactory
)
$this->_countryFactory = $countryFactory;


public function getCountryname($countryCode)
$country = $this->_countryFactory->create()->loadByCode($countryCode);
return $country->getName();



Call from phtml file,



echo $block->getCountryname($countryCode);





share|improve this answer




















  • 1





    Correct except you are missing a semi colon after $country = $this->_countryFactory->create()->loadByCode($countryCode) it should be $country = $this->_countryFactory->create()->loadByCode($countryCode);

    – Eirik
    May 6 '17 at 18:16











  • Is it possible to get country code from country name?

    – Vindhuja
    Nov 29 '18 at 6:20











  • @Vindhuja Check rakeshjesadiya.com/…

    – Rakesh Jesadiya
    Nov 29 '18 at 6:29


















3














We can use MagentoDirectoryApiCountryInformationAcquirerInterface to get the country info:



/** @var MagentoDirectoryApiCountryInformationAcquirerInterface $country */

/** @var MagentoDirectoryApiDataCountryInformationInterface $data */
$data = $country->getCountryInfo($data['country_id']);
$data->getFullNameEnglish();
$data->getFullNameLocale();


See more here about the returned values: MagentoDirectoryApiDataCountryInformationInterface






share|improve this answer






























    0














    Check the given model of country and its methods:



    /**
    *
    * @param MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig
    * @param MagentoDirectoryModelCountryFactory $countryFactory
    */
    public function __construct(
    MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig,
    MagentoDirectoryModelCountryFactory $countryFactory
    )
    $this->scopeConfig = $scopeConfig;
    $this->countryFactory = $countryFactory;



    One of the method it provides is $this->countryFactory->create()->getName(); .You can use the model factory based on your requirements.






    share|improve this answer
































      -2














      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $allowerdContries = $objectManager->get('MagentoDirectoryModelAllowedCountries')->getAllowedCountries() ;
      $countryFactory = $objectManager->get('MagentoDirectoryModelCountryFactory');
      //echo "<pre>"; print_r($allowerdContries);

      $countries = array();
      foreach($allowerdContries as $countryCode)

      if($countryCode)


      $data = $countryFactory->create()->loadByCode($countryCode);
      $countries[$countryCode] = $data->getName();







      share|improve this answer

























        Your Answer








        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "479"
        ;
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function()
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled)
        StackExchange.using("snippets", function()
        createEditor();
        );

        else
        createEditor();

        );

        function createEditor()
        StackExchange.prepareEditor(
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: false,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: null,
        bindNavPrevention: true,
        postfix: "",
        imageUploader:
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        ,
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );













        draft saved

        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f159494%2fhow-to-get-country-name-from-country-code-in-magento-2%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        21














        Create Block file,



         public function __construct(
        MagentoDirectoryModelCountryFactory $countryFactory
        )
        $this->_countryFactory = $countryFactory;


        public function getCountryname($countryCode)
        $country = $this->_countryFactory->create()->loadByCode($countryCode);
        return $country->getName();



        Call from phtml file,



        echo $block->getCountryname($countryCode);





        share|improve this answer




















        • 1





          Correct except you are missing a semi colon after $country = $this->_countryFactory->create()->loadByCode($countryCode) it should be $country = $this->_countryFactory->create()->loadByCode($countryCode);

          – Eirik
          May 6 '17 at 18:16











        • Is it possible to get country code from country name?

          – Vindhuja
          Nov 29 '18 at 6:20











        • @Vindhuja Check rakeshjesadiya.com/…

          – Rakesh Jesadiya
          Nov 29 '18 at 6:29















        21














        Create Block file,



         public function __construct(
        MagentoDirectoryModelCountryFactory $countryFactory
        )
        $this->_countryFactory = $countryFactory;


        public function getCountryname($countryCode)
        $country = $this->_countryFactory->create()->loadByCode($countryCode);
        return $country->getName();



        Call from phtml file,



        echo $block->getCountryname($countryCode);





        share|improve this answer




















        • 1





          Correct except you are missing a semi colon after $country = $this->_countryFactory->create()->loadByCode($countryCode) it should be $country = $this->_countryFactory->create()->loadByCode($countryCode);

          – Eirik
          May 6 '17 at 18:16











        • Is it possible to get country code from country name?

          – Vindhuja
          Nov 29 '18 at 6:20











        • @Vindhuja Check rakeshjesadiya.com/…

          – Rakesh Jesadiya
          Nov 29 '18 at 6:29













        21












        21








        21







        Create Block file,



         public function __construct(
        MagentoDirectoryModelCountryFactory $countryFactory
        )
        $this->_countryFactory = $countryFactory;


        public function getCountryname($countryCode)
        $country = $this->_countryFactory->create()->loadByCode($countryCode);
        return $country->getName();



        Call from phtml file,



        echo $block->getCountryname($countryCode);





        share|improve this answer















        Create Block file,



         public function __construct(
        MagentoDirectoryModelCountryFactory $countryFactory
        )
        $this->_countryFactory = $countryFactory;


        public function getCountryname($countryCode)
        $country = $this->_countryFactory->create()->loadByCode($countryCode);
        return $country->getName();



        Call from phtml file,



        echo $block->getCountryname($countryCode);






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 12 mins ago









        Community

        1




        1










        answered Feb 13 '17 at 4:56









        Rakesh JesadiyaRakesh Jesadiya

        30.1k1576124




        30.1k1576124







        • 1





          Correct except you are missing a semi colon after $country = $this->_countryFactory->create()->loadByCode($countryCode) it should be $country = $this->_countryFactory->create()->loadByCode($countryCode);

          – Eirik
          May 6 '17 at 18:16











        • Is it possible to get country code from country name?

          – Vindhuja
          Nov 29 '18 at 6:20











        • @Vindhuja Check rakeshjesadiya.com/…

          – Rakesh Jesadiya
          Nov 29 '18 at 6:29












        • 1





          Correct except you are missing a semi colon after $country = $this->_countryFactory->create()->loadByCode($countryCode) it should be $country = $this->_countryFactory->create()->loadByCode($countryCode);

          – Eirik
          May 6 '17 at 18:16











        • Is it possible to get country code from country name?

          – Vindhuja
          Nov 29 '18 at 6:20











        • @Vindhuja Check rakeshjesadiya.com/…

          – Rakesh Jesadiya
          Nov 29 '18 at 6:29







        1




        1





        Correct except you are missing a semi colon after $country = $this->_countryFactory->create()->loadByCode($countryCode) it should be $country = $this->_countryFactory->create()->loadByCode($countryCode);

        – Eirik
        May 6 '17 at 18:16





        Correct except you are missing a semi colon after $country = $this->_countryFactory->create()->loadByCode($countryCode) it should be $country = $this->_countryFactory->create()->loadByCode($countryCode);

        – Eirik
        May 6 '17 at 18:16













        Is it possible to get country code from country name?

        – Vindhuja
        Nov 29 '18 at 6:20





        Is it possible to get country code from country name?

        – Vindhuja
        Nov 29 '18 at 6:20













        @Vindhuja Check rakeshjesadiya.com/…

        – Rakesh Jesadiya
        Nov 29 '18 at 6:29





        @Vindhuja Check rakeshjesadiya.com/…

        – Rakesh Jesadiya
        Nov 29 '18 at 6:29













        3














        We can use MagentoDirectoryApiCountryInformationAcquirerInterface to get the country info:



        /** @var MagentoDirectoryApiCountryInformationAcquirerInterface $country */

        /** @var MagentoDirectoryApiDataCountryInformationInterface $data */
        $data = $country->getCountryInfo($data['country_id']);
        $data->getFullNameEnglish();
        $data->getFullNameLocale();


        See more here about the returned values: MagentoDirectoryApiDataCountryInformationInterface






        share|improve this answer



























          3














          We can use MagentoDirectoryApiCountryInformationAcquirerInterface to get the country info:



          /** @var MagentoDirectoryApiCountryInformationAcquirerInterface $country */

          /** @var MagentoDirectoryApiDataCountryInformationInterface $data */
          $data = $country->getCountryInfo($data['country_id']);
          $data->getFullNameEnglish();
          $data->getFullNameLocale();


          See more here about the returned values: MagentoDirectoryApiDataCountryInformationInterface






          share|improve this answer

























            3












            3








            3







            We can use MagentoDirectoryApiCountryInformationAcquirerInterface to get the country info:



            /** @var MagentoDirectoryApiCountryInformationAcquirerInterface $country */

            /** @var MagentoDirectoryApiDataCountryInformationInterface $data */
            $data = $country->getCountryInfo($data['country_id']);
            $data->getFullNameEnglish();
            $data->getFullNameLocale();


            See more here about the returned values: MagentoDirectoryApiDataCountryInformationInterface






            share|improve this answer













            We can use MagentoDirectoryApiCountryInformationAcquirerInterface to get the country info:



            /** @var MagentoDirectoryApiCountryInformationAcquirerInterface $country */

            /** @var MagentoDirectoryApiDataCountryInformationInterface $data */
            $data = $country->getCountryInfo($data['country_id']);
            $data->getFullNameEnglish();
            $data->getFullNameLocale();


            See more here about the returned values: MagentoDirectoryApiDataCountryInformationInterface







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Feb 13 '17 at 6:24









            Khoa TruongDinhKhoa TruongDinh

            22k64187




            22k64187





















                0














                Check the given model of country and its methods:



                /**
                *
                * @param MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig
                * @param MagentoDirectoryModelCountryFactory $countryFactory
                */
                public function __construct(
                MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig,
                MagentoDirectoryModelCountryFactory $countryFactory
                )
                $this->scopeConfig = $scopeConfig;
                $this->countryFactory = $countryFactory;



                One of the method it provides is $this->countryFactory->create()->getName(); .You can use the model factory based on your requirements.






                share|improve this answer





























                  0














                  Check the given model of country and its methods:



                  /**
                  *
                  * @param MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig
                  * @param MagentoDirectoryModelCountryFactory $countryFactory
                  */
                  public function __construct(
                  MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig,
                  MagentoDirectoryModelCountryFactory $countryFactory
                  )
                  $this->scopeConfig = $scopeConfig;
                  $this->countryFactory = $countryFactory;



                  One of the method it provides is $this->countryFactory->create()->getName(); .You can use the model factory based on your requirements.






                  share|improve this answer



























                    0












                    0








                    0







                    Check the given model of country and its methods:



                    /**
                    *
                    * @param MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig
                    * @param MagentoDirectoryModelCountryFactory $countryFactory
                    */
                    public function __construct(
                    MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig,
                    MagentoDirectoryModelCountryFactory $countryFactory
                    )
                    $this->scopeConfig = $scopeConfig;
                    $this->countryFactory = $countryFactory;



                    One of the method it provides is $this->countryFactory->create()->getName(); .You can use the model factory based on your requirements.






                    share|improve this answer















                    Check the given model of country and its methods:



                    /**
                    *
                    * @param MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig
                    * @param MagentoDirectoryModelCountryFactory $countryFactory
                    */
                    public function __construct(
                    MagentoFrameworkAppConfigScopeConfigInterface $scopeConfig,
                    MagentoDirectoryModelCountryFactory $countryFactory
                    )
                    $this->scopeConfig = $scopeConfig;
                    $this->countryFactory = $countryFactory;



                    One of the method it provides is $this->countryFactory->create()->getName(); .You can use the model factory based on your requirements.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 2 '18 at 12:16









                    Sourabh Kumar Sharma

                    671316




                    671316










                    answered Feb 13 '17 at 4:56









                    Sanjay ChaudharySanjay Chaudhary

                    385217




                    385217





















                        -2














                        $objectManager = MagentoFrameworkAppObjectManager::getInstance();
                        $allowerdContries = $objectManager->get('MagentoDirectoryModelAllowedCountries')->getAllowedCountries() ;
                        $countryFactory = $objectManager->get('MagentoDirectoryModelCountryFactory');
                        //echo "<pre>"; print_r($allowerdContries);

                        $countries = array();
                        foreach($allowerdContries as $countryCode)

                        if($countryCode)


                        $data = $countryFactory->create()->loadByCode($countryCode);
                        $countries[$countryCode] = $data->getName();







                        share|improve this answer





























                          -2














                          $objectManager = MagentoFrameworkAppObjectManager::getInstance();
                          $allowerdContries = $objectManager->get('MagentoDirectoryModelAllowedCountries')->getAllowedCountries() ;
                          $countryFactory = $objectManager->get('MagentoDirectoryModelCountryFactory');
                          //echo "<pre>"; print_r($allowerdContries);

                          $countries = array();
                          foreach($allowerdContries as $countryCode)

                          if($countryCode)


                          $data = $countryFactory->create()->loadByCode($countryCode);
                          $countries[$countryCode] = $data->getName();







                          share|improve this answer



























                            -2












                            -2








                            -2







                            $objectManager = MagentoFrameworkAppObjectManager::getInstance();
                            $allowerdContries = $objectManager->get('MagentoDirectoryModelAllowedCountries')->getAllowedCountries() ;
                            $countryFactory = $objectManager->get('MagentoDirectoryModelCountryFactory');
                            //echo "<pre>"; print_r($allowerdContries);

                            $countries = array();
                            foreach($allowerdContries as $countryCode)

                            if($countryCode)


                            $data = $countryFactory->create()->loadByCode($countryCode);
                            $countries[$countryCode] = $data->getName();







                            share|improve this answer















                            $objectManager = MagentoFrameworkAppObjectManager::getInstance();
                            $allowerdContries = $objectManager->get('MagentoDirectoryModelAllowedCountries')->getAllowedCountries() ;
                            $countryFactory = $objectManager->get('MagentoDirectoryModelCountryFactory');
                            //echo "<pre>"; print_r($allowerdContries);

                            $countries = array();
                            foreach($allowerdContries as $countryCode)

                            if($countryCode)


                            $data = $countryFactory->create()->loadByCode($countryCode);
                            $countries[$countryCode] = $data->getName();








                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Feb 14 at 10:07









                            Khushbu

                            9010




                            9010










                            answered Feb 14 at 9:39









                            Jaykumar RJaykumar R

                            172




                            172



























                                draft saved

                                draft discarded
















































                                Thanks for contributing an answer to Magento Stack Exchange!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid


                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.

                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f159494%2fhow-to-get-country-name-from-country-code-in-magento-2%23new-answer', 'question_page');

                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Magento 2 duplicate PHPSESSID cookie when using session_start() in custom php scriptMagento 2: User cant logged in into to account page, no error showing!Magento duplicate on subdomainGrabbing storeview from cookie (after using language selector)How do I run php custom script on magento2Magento 2: Include PHP script in headerSession lock after using Cm_RedisSessionscript php to update stockMagento set cookie popupMagento 2 session id cookie - where to find it?How to import Configurable product from csv with custom attributes using php scriptMagento 2 run custom PHP script

                                Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

                                How to solve knockout JS error in Magento 2 Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?(Magento2) knockout.js:3012 Uncaught ReferenceError: Unable to process bindingUnable to process binding Knockout.js magento 2Cannot read property `scopeLabel` of undefined on Product Detail PageCan't get Customer Data on frontend in Magento 2Magento2 Order Summary - unable to process bindingKO templates are not loading in Magento 2.1 applicationgetting knockout js error magento 2Product grid not load -— Unable to process binding Knockout.js magento 2Product form not loaded in magento2Uncaught ReferenceError: Unable to process binding “if: function()return (isShowLegend()) ” magento 2