如何按特定值顺序获取多行

How to fetch many rows order by a specific value

通过使用 zend 1.12 如何对获取的数据进行排序,首先是特定条目。 (按顺序) 如何使 ex 'Bioversity International' 的最后一个选项成为下面写的 where 子句 a 旁边的第一个选项。

$_partnerMapper = new Model_Mapper_Partner();
$_partnerCollection = $_partnerMapper->fetchMany(array('partner_type_id'=>9));
$this->view->partnerCollection = $_partnerCollection;

这不是 zend 1.12,它是 zend 之外的东西,但类似于以下内容

fetchMany($criteria=null,$order=null,$count=null,$offset=-1)

所以你需要做的是 $_partnerMapper->fetchMany(array('partner_type_id'=>9),'partner_type_id ASC');