How to Get country name from country code in Magento 2?Magento 2 - Get country in billing addressMagento...

How writing a dominant 7 sus4 chord in RNA ( Vsus7 chord in the 1st inversion)

Plagiarism or not?

Examples of smooth manifolds admitting inbetween one and a continuum of complex structures

Why didn't Boeing produce its own regional jet?

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

CAST throwing error when run in stored procedure but not when run as raw query

Can my sorcerer use a spellbook only to collect spells and scribe scrolls, not cast?

Avoiding direct proof while writing proof by induction

Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?

What is the most common color to indicate the input-field is disabled?

Arrow those variables!

Cursor Replacement for Newbies

Do scales need to be in alphabetical order?

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

ssTTsSTtRrriinInnnnNNNIiinngg

Can a virus destroy the BIOS of a modern computer?

What about the virus in 12 Monkeys?

How badly should I try to prevent a user from XSSing themselves?

Solving a recurrence relation (poker chips)

Avoiding the "not like other girls" trope?

Reverse dictionary where values are lists

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

Ambiguity in the definition of entropy

One verb to replace 'be a member of' a club



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 8 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

                                “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

                                How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

                                夢乃愛華...