3

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

4

2 回答 2

3

此链接将帮助您实现相同的目标。

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

于 2012-08-09T05:56:38.177 回答
0

另一种解决方案:

echo $this->Paginator->param('pageCount');
于 2019-03-05T08:01:40.430 回答