我正在尝试从我的数据库中获取一些行,其中字段具有特定值。我试过这段代码:
public function getJewelrybyCollection($collection)
{
$rowset = $this->tableGateway->select(array('collection' => $collection));
$row = $rowset->current();
if (!$row) {
throw new \Exception("Could not find collection $collection");
}
return $row;
}
这是有效的,但只检索一行,因为$row = $rowset->current();
我尝试返回$rowset
var,但没有好的结果。
我是ZF2的新手
谢谢