-2

私のブログのページ機能がうまく機能していません。ページ 2 をクリックすると、ページ 3 にスキップします。ページ 1 をクリックすると、ページ 2 が読み込まれます。この関数は Web のどこかで見つけました。それは私のものではありません。

function generate_pages($total,$current)
{
    if($total > 1)
    {
        $total=intval($total);

        $output='<div class="page"><b>Pages:</b>  ';
        $current_page= (false == isset($current)) ? 1 : $current;
        for($page=1;$page<$total+1;$page++)
        {
            $lower=$current_page-3;
            $upper=$current_page+3;
            $special = ($page==$current_page) ? " class=\"current\"" : "";
            if(($page > $lower && $page < $upper) || $page < 2 || $page > ($total-1))
            {
                if($last_done_page+1 != $page) $output.= '... ';
                $output.='<b>[<a'.$special.' href="?pg='.$page.'">'.$page.'</a>] </b>';
                $last_done_page=$page;
            }
        }
        $output.='</div><br/>';
        return $output;
    }
}
4

1 に答える 1

0

これらの変更が役立つと思います:

function generate_pages($total,$current,$resultsPerPage)
{
    if($total > 1)
    {
        $total=intval($total/$resultsPerPage);

    if($total%$resultsPerPage>0)
    {
        $total=$total+1;
    }



        $output='<div class="page"><b>Pages:</b>  ';
        $current_page= (false == isset($current)) ? 1 : $current;
        for($page=1;$page<$total+1;$page++)
        {
            $lower=$current_page-3;
            $upper=$current_page+3;
            $special = ($page==$current_page) ? " class=\"current\"" : "";
            if(($page > $lower && $page < $upper) || $page < 2 || $page > ($total-1))
            {
                if($last_done_page+1 != $page) $output.= '... ';
                $output.='<b>[<a'.$special.' href="?pg='.$page.'">'.$page.'</a>] </b>';
                $last_done_page=$resultsPerPage;
            }
        }
        $output.='</div><br/>';
        return $output;
    }
}

追加のパラメーター $resultsperPage を 1 つ追加しました.......

于 2012-11-17T02:37:00.320 に答える