PHP使用或运算符

时间:2017-08-27 08:49:50

标签: php arrays if-statement operators

所以我有这个值数组

$veg = array('tomatoes', 'potatoes');

如何针对我的变量检查此数组,但使用“或”运算符

这样的东西
if if ($veggies == ('tomatoes' || 'potatoes'))  {
 ...
}

但我不知道如何在那里使用我的数组

1 个答案:

答案 0 :(得分:2)

使用in_array功能:

if (in_array($veggies, $veg)) {
    // do something
}