複数の条件付き(実行可能コード)で結果として得られるPHP(スイッチ)で複数の条件付きステートメントを使用することは可能ですか? コードは次のようになります。
$fifth
only was 9の場合、 only を$fifth -= $fifth;
実行する必要があり$fourth
ます$third
。
switch ($fifth xor $fourth xor $third) {
case '9':
$fifth -= $fifth;
$fourth -= $fourth;
$third -= $third;
break;
default:
$fifth = $fifth;
$fourth = $fourth;
$third = $third;
}