我有一堂课:
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 一样。我怎样才能让它返回所有项目的数组?