【CakePHP】Pagination(ページネーション)を使用する:current

2019年7月29日

バージョン:CakePHP 2.x

Pagination(ページネーション)を使用して現在のページ番号を取得するには、
currentを使用します。使い方は下記の通りです。

PaginatorHelper::current(string $model = null)

ビューに下記の用に書くと、ページ番号が表示されます。

echo $this->Paginator->current();

例えば5ページ目(http://xxxx.com/users/index/page:5)
のような場合には「5」という数字が取得できます。

参考:公式サイト(Paginator)

スポンサーリンク