这种形式的简单选择:
$select = $this->select();
return $rowset = $this->fetchAll($select);
现在,数组中有一个继承列,所以表的形式是:
id | role | inherits |
1 | admin | 2 |
2 | player | 3 |
并且当显示时,我希望 inherirs 列显示它实际继承的角色而不是 id。
Zend_Db_Table_Abstract 返回的数组非常复杂,所以我不能只说:
$array[0][inherits]