是否可以在switch-case中使用三个参数,如下所示:
switch($var1, $var2, $var3){ case true, false, false: echo "Hello"; break; }
如果没有,我应该使用if-else还是有更好的解决方案?
php
php ×1