有人可以建议使用以下 switch 语句的最佳方法吗?我不知道是否可以一次比较两个值,但这将是理想的:
switch($color,$size){
case "blue","small":
echo "blue and small";
break;
case "red","large";
echo "red and large";
break;
}
这可以与以下内容相媲美:
if (($color == "blue") && ($size == "small")) {
echo "blue and small";
}
elseif (($color == "red") && ($size == "large")) {
echo "red and large";
}
更新
我意识到我需要能够否定($color !== "blue")
和比较,而不是将变量等同于字符串。