OR Condition check multiple values possible?
我不知道我要找的是什么,所以我问在PHP中是否有一种方法来检查多个
我的意思是,是否可以写下以下条件
1 | if($var == 'this' || $var == 'orthis') //this can become very long |
通过写类似下面的东西
1 | if($var == 'this'||'orthis') //skiping the"||$var ==" every value i want to check |
我知道技术上我可以写下
但我知道是否有类似第二行的东西。
谢谢!
还可以使用switch语句
1 2 3 4 5 6 | switch ($var) { case 'this': case 'orthis': // some code break; } |
您正在寻找类似于SQL中的