PHP if else语句

时间:2010-08-01 08:14:05

标签: php

我们有变量$country,它可以提供~50个不同的值。

变量$id

我们应该做的是为$id提供与$country相对应的值,例如:

if ($country = 'USA') { $id = 'usa_type'; }
else if ($country = 'France') { $id = 'france_type'; }
else if ($country = 'German') { $id = 'german_type'; }
else if ($country = 'Spain') { $id = 'spain_type'; }
...
...
...
else if ($country = 'Urugway') { $id = 'urugway_type'; }
else { $id = 'undefined'; }

else if语句每次都重复,其他数据是典型的。

有没有办法缩短这段代码?

像:

[france]:'france_type;
[england]:'england_type;
...
[else]:'undefined'

感谢。

5 个答案:

答案 0 :(得分:6)

您可以从$id创建$country

$id = strtolower($country) . '_type';

如果您首先需要确定$country的有效性,请将所有国家/地区置于数组中,然后使用in_array确定$country是否有效:

$countries = array('USA', 'France', 'Germany', 'Spain', 'Uruguay');
if (in_array($country, $countries)) {
    $id = strtolower($country) . '_type';
}

答案 1 :(得分:4)

使用switch控制结构。它会缩短您的代码。

http://php.net/manual/en/control-structures.switch.php

答案 2 :(得分:1)

看看你的例子你可以做点什么

$id = strtolower($country) + '_type';

答案 3 :(得分:1)

将所有国家/地区和代码放在数组中,如下所示:

$countries = array( "0" => array("country_name" => "usa", 
                                 "country_type" => "001" ) ,

                    "1" => array("country_name" => "uae", 
                                 "country_type" => "002" ),

                    -----------------------------
                    -----------------------------

                  );

然后使用循环比较国家/地区名称,然后获取国家/地区ID。

$country = "usa";

for( $i = 0; $i < count($countries); $i++ ) {
   if( $country == $countries[$i]["country_name"] ){
      $id = $countries[$i]["country_type"];
      break;
   }
}

echo $id;

答案 4 :(得分:1)

或者你可以创建一个数组

$country_to_id = array(
  "USA" => "usa_type",
  "Spain" => "spain_type_or_whatever",
  ....
);
$country_id = (array_key_exists($country,$country_to_id)) ? $country_to_id[$country] : 'undefined';