php-switch语句一次有两个变量

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php-switch语句一次有两个变量脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
有人建议最好的方法来进行以下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”),而不是将变量等同于字符串.

你可以改变比较的顺序,但这还不是很理想.
switch(true)
    {
      case ($color == 'blue' and $size == 'small'):
        echo "blue and small";
        break;
      case ($color == 'red' and $size == 'large'):
        echo "red and large";
        break;
      default:
        echo 'nothing';
        break;
    }

脚本宝典总结

以上是脚本宝典为你收集整理的php-switch语句一次有两个变量全部内容,希望文章能够帮你解决php-switch语句一次有两个变量所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。