您好,登錄后才能下訂單哦!
在PHP中,可以使用靜態類來實現分頁功能。以下是一個簡單的示例代碼:
class Pagination
{
public static function paginate($totalPages, $currentPage, $perPage)
{
$output = '';
// 計算總頁數
$totalPages = ceil($totalPages / $perPage);
// 上一頁鏈接
if ($currentPage > 1) {
$output .= '<a href="?page=' . ($currentPage - 1) . '">上一頁</a>';
}
// 分頁鏈接
for ($i = 1; $i <= $totalPages; $i++) {
if ($i == $currentPage) {
$output .= '<strong>' . $i . '</strong>';
} else {
$output .= '<a href="?page=' . $i . '">' . $i . '</a>';
}
}
// 下一頁鏈接
if ($currentPage < $totalPages) {
$output .= '<a href="?page=' . ($currentPage + 1) . '">下一頁</a>';
}
return $output;
}
}
// 使用示例
$totalPages = 100; // 總頁數
$currentPage = isset($_GET['page']) ? $_GET['page'] : 1; // 當前頁
$perPage = 10; // 每頁顯示數量
echo Pagination::paginate($totalPages, $currentPage, $perPage);
在上面的示例中,Pagination
類包含一個paginate
方法,用于生成分頁鏈接。您可以將總頁數、當前頁和每頁顯示數量傳遞給該方法,并在頁面中調用該方法以顯示分頁鏈接。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。