如何在PHP的字符串中使用OR运算符

时间:2018-07-30 18:37:22

标签: php operators

php的新手,我想说“如果dc等于ABC或DEF。在php中,是:     如果($ dc ==“ ABC” |“ DEF”)

1 个答案:

答案 0 :(得分:1)

您可以使用in_array。

if(in_array($dc, ["ABC", "DEF"])){
    // One of them is  in $dc
}

如果在数组中找到指针($ dc),则In_array返回true。