$p= $context->getAttributes("p");
$pager="";
//$pager = $this->pager($count);
//$pager = $this->customPager($totalItems=$count, $perPage=1, $currentPage);
//$pager = $this->customPager($count, 1, $currentPage);
$currentPage = isset($_GET['p']) ? $_GET['p'] : 1;//pはページ番号
if (isset($_GET['sk'])) {//skはクエリの名前
$urlqs = $_GET['sk'];
//echo $sk;
}
$protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https' : 'http';
$host = $_SERVER['HTTP_HOST'];
$uri = $_SERVER['REQUEST_URI'];
$urlqs = $protocol . '://' . $host . $uri;
$perPage="10";//1ページに表示する件数
$pager = $this->customPager1($countnews,$urlqs, $perPage, $currentPage, 'p', 3);
/*
$totalItems = 100; // トータルアイテム数
$perPage = 10; // 1ページあたりのアイテム数
$currentPage = isset($_GET['page']) ? $_GET['page'] : 1; // 現在のページ
echo customPager($totalItems, $perPage, $currentPage);
*/
$count = $context->getAttributes("count");
$p = $context->getAttributes("p");
コメント