Zend_Db_Table_Abstract没有作为数组返回?

时间:2013-10-30 10:03:13

标签: php zend-framework

我有一个班级:

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会发生。如何让它返回所有项目的数组?

1 个答案:

答案 0 :(得分:3)

使用此

$rows = $this->fetchAll();
return $rows->toArray();