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"; } 更新
你可以改变比较的顺序,但这还不是很理想.
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; } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |