PHP 讀取文本文件內(nèi)容并分頁顯示
更新時間:2016年01月02日 16:14:17 作者:mickelfeng
本文給大家分享的代碼非常簡單實用,使用php實現(xiàn)讀取文本文件內(nèi)容,并且分頁展示出來,有類似需求的小伙伴可以來參考下。
功能很簡單,只是使用 PHP 讀取文本(TXT)文件 并分頁顯示
<?php //----------------you should save this file as m.php----------------
session_start();
if (empty($page)) {$page=1;}
if (isset($_GET['page'])==TRUE) {$page=$_GET['page']; }
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Read Result</title>
<style type="text/css">
<!--
.STYLE1 {font-size: 12px}
.STYLE2 {font-size: 18px}
-->
</style>
</head>
<body>
<table width="100%" bgcolor="#CCCCCC">
<tr>
<td >
<?php
if($page){
$counter=file_get_contents("example.txt"); //-------read the file into a string.-------
$length=strlen($counter);
$page_count=ceil($length/5000);
function msubstr($str,$start,$len){
$strlength=$start+$len;
$tmpstr="";
for($i=0;$i<$strlength;$i++) {
if(ord(substr($str,$i,1))==0x0a) {
$tmpstr.='<br />';
}
if(ord(substr($str,$i,1))>0xa0) {
$tmpstr.=substr($str,$i,2);
$i++;
}
else{
$tmpstr.=substr($str,$i,1); }
}
return $tmpstr;
}
//--------------------------截取中文字符串--------------------------
$c=msubstr($counter,0,($page-1)*5000);
$c1=msubstr($counter,0,$page*5000);
echo substr($c1,strlen($c),strlen($c1)-strlen($c));
}?>
</td>
</tr>
</table>
<table width="100%" bgcolor="#cccccc">
<tr>
<td width="42%" align="center" valign="middle"><span class="STYLE1"> <?php echo $page;?> / <?php echo $page_count;?> 頁 </span></td>
<td width="58%" height="28" align="left" valign="middle">
<span class="STYLE1">
<?php
echo "<a href=m.php?page=1>首頁</a> ";
if($page!=1){
echo "<a href=m.php?page=".($page-1).">上一頁</a> ";
}
if($page<$page_count){
echo "<a href=m.php?page=".($page+1).">下一頁</a> ";
}
echo "<a href=m.php?page=".$page_count.">尾頁</a>";
?>
</span> </td>
</tr>
</table>
</body>
</html>
相關文章
php json轉(zhuǎn)換相關知識(小結(jié))
這篇文章主要介紹了php json轉(zhuǎn)換相關知識(小結(jié)),小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-12-12
PHP+fiddler抓包采集微信文章閱讀數(shù)點贊數(shù)的思路詳解
這篇文章主要介紹了PHP+fiddler抓包采集微信文章閱讀數(shù)點贊數(shù)的思路,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下2019-12-12
Thinkphp調(diào)用Image類生成縮略圖的方法
這篇文章主要介紹了Thinkphp調(diào)用Image類生成縮略圖的方法,實例分析了Thinkphp調(diào)用Image類生成縮略圖的使用原理與相關技巧,需要的朋友可以參考下2015-03-03

