I am using Zend_Pagintor class with Zend_Db_Table_Abstract .

Zend_Pagintor has a count() method but it always returns 1!

How do i get row counts?

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

You can use:

$paginator->getTotalItemCount();
link|improve this answer
feedback

Pick the right one for your needs:

  • count returns the number of pages.
  • getAbsoluteItemNumber returns the absolute item number for the specified item.
  • getCurrentItemCount returns the number of items for the current page.
  • getItemCount returns the number of items in a collection.
  • getItemCountPerPage returns the number of items per page.
  • getTotalItemCount returns the total number of items available.

You are probably looking for getCurrentItemCount or getTotalItemCount

See http://framework.zend.com/apidoc/core/Zend_Paginator/Zend_Paginator.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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