I have a query in yii2:
$models = Company::find()->where('name like :q', ['q'=>/* Array here */])->all();
You can see that I have an array of q-elements I want to add to the query. How can I write the query so that it will check for one or many q elements (size of array unknown)?