使用关联数组将ISO 3166-1 alpha-2代码转换为电话代码的功能

时间:2016-10-30 11:07:25

标签: php

我正在编写一个php函数,将ISO 3166-1 alpha 2代码转换为国家电话代码。我的挑战是,当我调用该函数时,只显示+符号。如何才能显示数字?以下是我使用的代码,只是因为我减少了国家/地区的数量。

<?php

function ctryarray($data)
{
 $redata = "";

$country['AF'] = "+93";
$country['AL'] = "+355";
$country['DZ'] = "+213";
$country['AS'] = "+1";

$redata = $country[$data];
return $redata;

}
?>

//Then I use the following code to call it:

$countrycode = ctryarray($ccode);

其中$ ccode是ISO 3166-1 alpha-2代码。

1 个答案:

答案 0 :(得分:0)

虽然您提供的代码没有显示您描述的错误,但它可能会有点浓缩,并且还应该进行一些错误检查:

function ctryarray($data) {
  $country['AF'] = "+93";
  $country['AL'] = "+355";
  $country['DZ'] = "+213";
  $country['AS'] = "+1";

  if (array_key_exists($data,$country)) {
    return $country[$data];
  } else {
    return false;
  }
}