加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

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

发布时间:2020-12-13 13:13:50 所属栏目:PHP教程 来源:网络整理
导读:有人建议最好的方法来进行以下switch语句?我不知道可以一次比较两个值,但这是理想的: switch($color,$size){ case "blue","small": echo "blue and small"; break; case "red","large"; echo "red and large"; break;} 这可以相当于: if (($color == "blu
有人建议最好的方法来进行以下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;
    }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读