我正在尝试从项目表中选择一个项目并加入第二个表(图像)。表格图像将为每个项目提供多个结果。问题是结果连接只带来一个结果,而不是包含所有图像数据的数组。
编码
$select = $this->select();
$select->setIntegrityCheck(false);
$select->from($this)
->joinLeft('items_images', 'items.item_id = image_item_id')
->where($where);
$result = $this->fetchRoll($select);
我错过了什么?
谢谢