我有文本文件,我想显示页码以显示在页面中
,例如我的文本文件有 100 行,我可以用表格中的数组显示它们,一行中的每一行如下所示:
这是我的文本文件示例:
mycontent-54564-yoursdsd
condsadtent-5544564-fyfdfdsd
....
//convert into array
$lines = file('myfile.txt');
//count number of lines
$numbers=count($lines);
//show every line in a row of table :
foreach ($lines as $line) {
$line=explode("-", $line);
echo "<tr>";
echo "<td>$line[0]</td>";
echo "<td>$line[1]</td>";
echo "<td>$line[2]</td>";
echo "</tr>";
}
我想使用 PHP 进行分页以查看此表,例如在一页中显示每 10 行文本文件,在第 1 页中显示第 1 到 10 行,在第 2 页中显示第 11 到 20 行等等......我该怎么做?