 
  
  Мне нужно сделать вместо AND OR. Как можно добиться
->andWhere а есть ->orWhere. ->andWhere(['or',['some_hren'=>12],['some_hren'=>145]])$model = SomeModel::find();
foreach($search_words_array as $word){
  $model->orWhere(['like','season',$word]);
}
print_r($model->asArray()->all());