我在代码中做了很多嵌套的 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 条件