Zend_Paginator return as objects
问题 Zend_Paginator returns results as a standard array but I need to make my results come back as an instance of a class, how do I do this? For example, I want all news articles so would need my items to come back as an instance of News_Model_Article 回答1: You can also create custom zend paginator adapter like: class Application_Paginator_Adapter extends Zend_Paginator_Adapter_DbSelect { public function getItems($offset, $itemCountPerPage) { $this->_select->limit($itemCountPerPage, $offset);