获取Cakephp中最后一页的数字

时间:2012-08-09 05:53:37

标签: cakephp cakephp-2.0 cakephp-2.1

如何获取最后一个页码,而不是$ this-> Paginator-> last()附带的链接,而是实际数字本身?

2 个答案:

答案 0 :(得分:3)

This link将帮助您实现同样的目标。

<?php echo $this->Paginator->counter('{:pages}');
     //counter() method with all options
     //echo $this->Paginator->counter('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}');?>

您可以在视图中调用counter()方法以获取最后一页编号。

答案 1 :(得分:0)

另一种解决方案:

echo $this->Paginator->param('pageCount');