Simple PHP Condition help: if($Var1 = in list($List) and $Cond2) - Is this posslbe?

后端 未结 6 1867
挽巷
挽巷 2021-02-20 17:01

Is this a possible function?

I need to check if a variable is existent in a list of ones I need to check against and also that cond2 is true eg

if($row[\         


        
6条回答
  •  梦毁少年i
    2021-02-20 17:30

    if(in_array($row['name'], array('1', '2', '3')) && $Cond2) {
      doThis();
    }
    

    PHP's in_array() docs: http://us.php.net/manual/en/function.in-array.php

提交回复
热议问题