如何使用 foreach 循环遍历控制器中的数据库结果?
$select = new Select();
$select->from('table_name');
$select->where(array('salt' => $salt));
$select->where(array('ip' => $this->_getUserIp()));
$rowset = $this->tableGateway->selectWith($select);
return $rowset;
我想我需要将 db 结果对象转换为数组?
提前致谢