0

我在代码中做了很多嵌套的 if-else 条件。我做了大约 34 次。你知道,这真的让我发疯。请告诉我如何减少它。谢谢你。

这里是我的代码:

if ($input_age > $age_min && $input_age <$age_max){
 if ($input_heigh > $heigh_min && $input_heigh < $heigh_max){
    if ($input_ds == "yes" && $ds_val=="yes" ){ 
    //some calculation
    }
    else if ($input_ds == "no" && $ds_val=="yes"){ 
    //some calculation

    }
    else if ($input_ds == "yes" && $ds_val=="no"){ 
    //some calculation

    }
    else if ($input_ds == "no" && $ds_val=="no"){ 

    //some calculation  

    }
}
else if ($input_heigh < $heigh_min || $input_heigh > $heigh_max){
    if ($input_ds == "yes" && $ds_val=="yes" ){
    //some calculation

    }
    else if ($input_ds == "no" && $ds_val=="yes" ){ 
    //some calculation

    }

    else if ($input_ds == "yes" && $ds_val=="no"){ 
    //some calculation

    }
    else if ($input_ds == "no" && $ds_val=="no" ){ 
    //some calculation

    }
}

还有更多 if-else 条件

4

1 回答 1

2

我建议在这种情况下使用 switch 它更具可读性。这是一个简单的例子:

switch($input_ds.$ds_val){
   case 'yesyes':
      //some calculations
      break;
   case 'yesno':
      //some calculations
      break;
   case 'noyes':
      //some calculations
      break;
   case 'nono':
      //some calculations
      break;
}
于 2013-05-14T08:44:34.710 回答