获取Cakephp中最后一页的数字

获取Cakephp中最后一页的数字,cakephp,cakephp-2.0,cakephp-2.1,Cakephp,Cakephp 2.0,Cakephp 2.1,如何只获取最后一个页码,而不是$this->Paginator->last()附带的链接,而是实际的数字本身?将帮助您实现同样的目标 <?php echo $this->Paginator->counter('{:pages}'); //counter() method with all options //echo $this->Paginator->counter('Page {:page} of {:pages}, showing {:cu

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

将帮助您实现同样的目标

<?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()方法以获取最后一个页码。

另一种解决方案:

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

我需要的不是:结束,而是:有效的页面。所以我会给你答案。