-1

我有一堂课:

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

4

1 回答 1

3

用这个

$rows = $this->fetchAll();
return $rows->toArray();
于 2013-10-30T10:04:56.017 回答