Zend Query Select
问题 Hi i need to do a simple query but something is wrong. I have $name and $surname and i need to search the (possible multiple) id that rappresent that name and surname and put all the id, name and surname in a array I do this query: $result=$this->_db_table->select()->where('name=?',$name) ->where('surname=?', $surname)->query() ->fetchAll(); $array=$result->toArray(); return $array; If i use $result=$this->_db_table->fetchAll(); $array=$result->toArray(); return $array it work correctly and i