我有一个班级:
class Branches extends Zend_Db_Table_Abstract
{
protected $_name = 'branches';
protected $_rowClass = 'branch';
public function getBranches()
{
return $this->fetchAll();
}
}
问题是,getBranches返回一个类型为“Zend_Db_Table_Abstract”的对象。我希望得到所有单个项目的数组,如果我通常做一个fetchAll会发生。如何让它返回所有项目的数组?
答案 0 :(得分:3)
使用此
$rows = $this->fetchAll();
return $rows->toArray();