PHP 简单的分页

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 简单的分页相关的知识,希望对你有一定的参考价值。

<?php
function dopages($curent_page, $totalcontent, $perpage){
    $totalpages = $totalcontent / $perpage;

    if($curent_page !== 1){
        $preid = $curent_page - 1;
        $output .= '<a href="'.$preid.'">Previous</a> ';
    }

    while ( $counter <= $totalpages ) {
        if($counter == $curent_page){
            $output .= '<a href="'.$counter.'"><b>'.$counter.'</b></a> ';
        }else {
            $output .= '<a href="'.$counter.'">'.$counter.'</a> ';
        }
        $counter = $counter + 1;
    }

    if($curent_page !== $totalpages){
     $neid = $curent_page + 1;
        $output .= '<a href="'.$neid.'">Next</a> ';
    }


    return $output;
}  
?>

//usage
<? echo dopages(1, 80, 20); ?>

以上是关于PHP 简单的分页的主要内容,如果未能解决你的问题,请参考以下文章

php课程---简单的分页练习

PHP之简单的分页类

简单易用的分页类实例代码PHP

PHP入门(16) 使用mysqli实现简单的分页

php 论坛里面的分页问题

如何使用Gridview在Kotlin上进行简单的分页?