PHP 读取文本文件内容并分页显示
发布:smiling 来源: PHP粉丝网 添加日期:2021-07-03 22:02:48 浏览: 评论:0
本文给大家分享的代码非常简单实用,使用php实现读取文本文件内容,并且分页展示出来,有类似需求的小伙伴可以来参考下。
功能很简单,只是使用 PHP 读取文本(TXT)文件 并分页显示。
- <?php //----------------you should save this file as m.php----------------
- session_start();
- if (emptyempty($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>
Tags: PHP读取文本文件
相关文章
- ·php读取文本文件内容(2014-08-16)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)