0
有沒有更簡單的方法來編寫下面的代碼?這將比2例大得多,所以很快就會很難處理。簡化if-else語句
if ($result == 'yes')
{
echo 'this text';
}
else if ($result == 'no')
{
$result = in_string($kairos_array, explode(' ', $input_string));
if ($result == 'yes')
{
echo 'that text';
}
}
http://php.net/manual/ en/control-structures.switch.php? – AbraCadaver
使用'switch/case'語句。什麼會超過兩個?在else if($ result =='no')'塊內?或者在外部if/elseif中增加額外的'else if'語句? –