如何获取最后一个页码,而不是$ this-> Paginator-> last()附带的链接,而是实际数字本身?
答案 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');