标签: php arrays if-statement operators
所以我有这个值数组
$veg = array('tomatoes', 'potatoes');
如何针对我的变量检查此数组,但使用“或”运算符
像
if if ($veggies == ('tomatoes' || 'potatoes')) { ... }
但我不知道如何在那里使用我的数组
答案 0 :(得分:2)
使用in_array功能:
in_array
if (in_array($veggies, $veg)) { // do something }