I have a zend paginator object, I want to get the first element in this paginator.

I tried $paginator->getItem(0) but it returns the message:Message: Cannot seek to 0 which is below the offset 2. And the $paginator->count() is 19.

I can achieve this by using foreach:

foreach ($paginator as $item)
{
    $entry = $item;
}

How can I get this by not using foreach?

link|improve this question

80% accept rate
feedback

1 Answer

This will give you the first item without using foreach:

$first = current($paginator->getItemsByPage(1)); // Get the first item
$firstCurrent = current($paginator->getCurrentItems()); // Get the first item of the current pages
link|improve this answer
excuse me, but I sill don't know how to use the first item by that way? – eureka Jan 12 at 1:50
The $first and $firstCurrent should have the same value as the $item would have in the foreach. If the $entry variable from your foreach is the value you're trying to get, the snippet I posted should also do the trick. – Ilians Jan 12 at 9:55
dind't work dude :( – eureka Jan 12 at 10:51
Could you provide a var_dump of the $paginator->getItemsByPage(1) and $paginator->getCurrentItems()? – Ilians Jan 12 at 12:01
current() returns only true or false, I can use it as an item in paginator. – eureka Jan 13 at 3:50
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.