On 28 Jul 2008, at 01:36, samuel verdier wrote:
Hi, i am french... so my language is not good...I would like to receive an object and not a array with : myItems = $paginator->getCurrentItems();it would be possible to have a object like Zend_Db::FETCH_OBJ when i use DbSelect adaptater of paginator ?thanks
You could type cast the array... $myItems = (object) $paginator->getCurrentItems();
