I am using Zend_Pagintor
class with Zend_Db_Table_Abstract
.
我在Zend_Db_Table_Abstract中使用Zend_Pagintor类。
Zend_Pagintor
has a count()
method but it always returns 1!
Zend_Pagintor有一个count()方法,但它总是返回1!
How do i get row counts?
我如何获得行数?
2 个解决方案
#1
35
You can use:
您可以使用:
$paginator->getTotalItemCount();
#2
27
Pick the right one for your needs:
选择合适的产品以满足您的需求:
-
count
returns the number of pages. - count返回页数。
-
getAbsoluteItemNumber
returns the absolute item number for the specified item. - getAbsoluteItemNumber返回指定项的绝对项编号。
-
getCurrentItemCount
returns the number of items for the current page. - getCurrentItemCount返回当前页面的项目数。
-
getItemCount
returns the number of items in a collection. - getItemCount返回集合中的项目数。
-
getItemCountPerPage
returns the number of items per page. - getItemCountPerPage返回每页的项数。
-
getTotalItemCount
returns the total number of items available. - getTotalItemCount返回可用项目总数。
You are probably looking for getCurrentItemCount
or getTotalItemCount
您可能正在寻找getCurrentItemCount或getTotalItemCount
Check the API Docs for more details: http://framework.zend.com/apidoc/1.12
有关详细信息,请查看API文档:http://framework.zend.com/apidoc/1.12
#1
35
You can use:
您可以使用:
$paginator->getTotalItemCount();
#2
27
Pick the right one for your needs:
选择合适的产品以满足您的需求:
-
count
returns the number of pages. - count返回页数。
-
getAbsoluteItemNumber
returns the absolute item number for the specified item. - getAbsoluteItemNumber返回指定项的绝对项编号。
-
getCurrentItemCount
returns the number of items for the current page. - getCurrentItemCount返回当前页面的项目数。
-
getItemCount
returns the number of items in a collection. - getItemCount返回集合中的项目数。
-
getItemCountPerPage
returns the number of items per page. - getItemCountPerPage返回每页的项数。
-
getTotalItemCount
returns the total number of items available. - getTotalItemCount返回可用项目总数。
You are probably looking for getCurrentItemCount
or getTotalItemCount
您可能正在寻找getCurrentItemCount或getTotalItemCount
Check the API Docs for more details: http://framework.zend.com/apidoc/1.12
有关详细信息,请查看API文档:http://framework.zend.com/apidoc/1.12