以下是一個簡單的PHP分頁代碼示例:
<?php
// 設(shè)置每頁顯示的記錄數(shù)
$per_page = 10;
// 獲取當(dāng)前頁碼
$current_page = isset($_GET['page']) ? $_GET['page'] : 1;
// 假設(shè)有一個數(shù)組 $data 存儲了要分頁顯示的數(shù)據(jù)
$data = array(
// 數(shù)據(jù)內(nèi)容
);
// 計算總記錄數(shù)和總頁數(shù)
$total_records = count($data);
$total_pages = ceil($total_records / $per_page);
// 根據(jù)當(dāng)前頁碼計算起始位置
$start = ($current_page - 1) * $per_page;
// 獲取當(dāng)前頁顯示的數(shù)據(jù)
$display_data = array_slice($data, $start, $per_page);
// 輸出當(dāng)前頁的數(shù)據(jù)
foreach ($display_data as $item) {
echo $item . "<br>";
}
// 輸出分頁導(dǎo)航欄
echo "<div class='pagination'>";
for ($i = 1; $i <= $total_pages; $i++) {
echo "<a href='?page=$i'>$i</a> ";
}
echo "</div>";
?>
以上代碼中,$data是要分頁顯示的數(shù)據(jù)集合,$per_page是每頁顯示的記錄數(shù)。通過計算總記錄數(shù)$total_records和總頁數(shù)$total_pages,然后根據(jù)當(dāng)前頁碼$current_page計算起始位置$start,再使用array_slice函數(shù)獲取當(dāng)前頁要顯示的數(shù)據(jù)$display_data。最后使用foreach循環(huán)輸出當(dāng)前頁的數(shù)據(jù),并且輸出分頁導(dǎo)航欄,使用戶可以點擊切換不同的頁碼。