我在drupal贸易的field_data_commerce_customer_address
表中获得了国家代码。现在,如何从此代码中获取完整的国家/地区名称。
答案 0 :(得分:0)
您可以像这样使用drupal cores国家经理:
$country_list = \Drupal::getContainer()->get('country_manager')->getList();
$country_name = $country_list[$country_code]->render();