0
使用Zend選擇通過數組的多行的正確語法是什麼?所以基本上取得所有名稱爲$a OR $b
等的數據。取決於數組元素的個數。我想不出.......選擇帶有數組的Zend Db
public function selectRow($array)
{
$data = $this->table->select()
->where('name = ?', $array);
return $this->table->fetchAll($data);
}