是否可以在 PHP (switch) 中使用多条件语句产生多条件(可执行代码)?代码可能如下所示:
在$fifth
only 是 9 的情况下,$fifth -= $fifth;
only 必须执行,反之亦然$fourth
and $third
。
switch ($fifth xor $fourth xor $third) {
case '9':
$fifth -= $fifth;
$fourth -= $fourth;
$third -= $third;
break;
default:
$fifth = $fifth;
$fourth = $fourth;
$third = $third;
}