Iam new to Zend Framework 2, and have some trouble to create an WHERE SQL Statement with multiple "OR" clauses.
$ids = array("A1","A2","A3","A4","A5","A6","A7");
foreach ($ids as $id) {
$select->where->equalTo('id', $id);
// how to add OR for remaining ids
}
Is there any simple solution for this case?