新浪等一些大平台新闻网站经常使用内容分页技术,把一篇文章分成若干部分,每一部分作为其中一页,以这种形式展现给用户,不仅提升了用户体验,也提高了网站加载内容的效率,但是这种做法最大的问题就是在截取字符串的时候会出现乱码,下面是我做的一个测试,基本没什么问题,没有乱码出现。
代码如下:
header('content-type:text/html;charset="utf-8"');
class StrPage{
private $file;//文件内容
private $current;//当前页
private $pageLen;//每页显示的内容长度
private $totalPage;//总页数
private $url;//url地址
public function __construct($file,$len){
$a = array(' ',' ','\t','\n','\r','\s');
$b = array('','','','','');
$this->file = str_replace($a,$b,file_get_contents($file));
$this->current = $_GET['page'] ? $_GET['page'] : 1;
$this->pageLen = $len;
$this->totalPage = $this->getTotalPage();
$this->url = $this->getUrl();
}
private function getTotalPage(){
return ceil( strlen($this->file) / $this->pageLen );
}
private function getUrl(){
$url = parse_url($_SERVER['REQUEST_URI']);
parse_str($url['query'],$arry);
unset($arry['page']);
$query = http_build_query($arry);
return $url['path'].'?'.$query.'&page=';
}
private function first(){
if($this->current>1){
return '<a href="'.$this->url.'1">首页 </a>';
}
}
private function next(){
if($this->current<$this->totalPage){
return '<a href="'.$this->url.($this->current+1).'">下一页 </a>';
}
}
private function pre(){
if($this->current>1){
return '<a href="'.$this->url.($this->current-1).'">上一页 </a>';
}
}
private function end(){
return '<a href="'.$this->url.$this->totalPage.'">末页</a>';
}
private function subStrs($str){
if(ord(substr($this->file,$str,1))>127){
if(strlen(substr($this->file,0,$str))%3==1){
return $str+=2;
}else if(strlen(substr($this->file,0,$str))%3==2){
return $str+=1;
}else{
return $str+=0;
}
}else{
return $str+=0;
}
}
public function getContents(){
$prePageLen = $this->subStrs(($this->current-1)*$this->pageLen);
$currentPageLen = $this->subStrs($this->current*$this->pageLen);
$string = substr($this->file,$prePageLen,$currentPageLen-$prePageLen);
echo $prePageLen;
echo $currentPageLen;
return $string;
}
public function pageStyle(){
return '共有'.$this->totalPage.'页 '.$this->first().$this->pre().$this->next().$this->end();
}
}
$php = new StrPage('file.txt',500);
echo '<div style="width:558px;height:368px;border:1px solid #f00;line-height:14px;font-size:14px">'.$php->getContents().'</div>';
echo '<div>';
echo $php->pageStyle();
echo '</div>';
注意,你的文件编码和php脚本的编码要一致,我这边用的是utf8编码,在截取字符串避免乱码的时候与gbk稍有不同,详情请看上一章节。
- 0、php安装
- 1、选择PHP作为首选后端语言的原因
- 2、PHP基本语法
- 3、PHP中变量和常量的区别
- 4、PHP中单引号和双引号的区别
- 5、PHP检测数据类型的几种方式
- 6、PHP数据类型转换
- 7、return、break、continue的区别
- 8、PHP代码重用
- 9、字符串移除或添加函数
- 10、PHP中字符串大小写切换以及翻转和加密
- 11、PHP字符串截取和截取函数
- 12、PHP字符串替换和比较函数
- 13、PHP字符串url解析和实体转换
- 14、addslashes在预定义字符串前添加反斜杠
- 15、PHP中的数组基本概念
- 16、数组函数implode、explode、in_array、each、list
- 17、PHP数组函数(count、reset、end、next、current、key)
- 18、ZendStudio软件破解安装包免费下载
- 19、【图文】ZendStudio汉化方法
- 20、数组函数in_array、array_search、array_change_key_case、array_chu
- 21、关闭PHP提示的方法(运行出现Notice : Use of undefined constant 的完美解决方案
- 22、PHP数组函数(array_diff_ukey、array_diff_uassoc、array_intersect
- 23、PHP数组函数(array_fill、array_filter、array_flip、array_key_exis
- 24、PHP数组去重及向前向后删除元素的函数
- 25、PHP数组函数(array_map、array_walk、array_walk_recursive)
- 26、PHP数组函数(compact、extract)
- 27、PHP数组函数(array_merge、array_merge_recursive)
- 28、PHP数组函数(range、array_count_values、array_product)
- 29、PHP数组函数(array_reduce、array_slice、array_splice、array_sum)
- 30、PHP数组排序函数总结
- 31、PHP中面向对象的基本概念及定义对象的方法
- 32、PHP创建对象与构造函数
- 33、PHP对象的释放
- 34、PHP面向对象的特性(抽象、封装、继承、多态)
- 35、PHP面向对象的public、private、protected之间的区别
- 36、PHP面向对象中的final和const的用法
- 37、PHP面向对象的static关键字
- 38、PHP中的单例模式
- 39、$this、self、parent详解
- 40、PHP中面向对象的抽象类和抽象方法
- 41、PHP面向对象中的接口interface
- 42、PHP面向对象中的魔术方法
- 43、面向对象方法get_object_vars、is_subclass_of、interface_exists
- 44、PHP中的数学函数方法总结
- 45、PHP文件处理disk_total_space、disk_free_space、dirname、file_exis
- 46、PHP目录操作rename和scandir
- 47、PHP操作目录opendir、readdir、glob
- 48、PHP打开fopen、读取fread、写入文件fwrite
- 49、PHP文件处理file_get_contents、file_put_contents、fgetc、fgets、fg
- 50、PHP截取字符串出现乱码的解决方法(UTF8和GBK)
- 51、PHP文件内容分页操作,避免乱码
- 52、PHP文件操作函数file、set_include_path、copy
- 53、PHP文件操作函数filemtime、filectime、fileatime、touch
- 54、PHP文件操作指针函数feof、ftell、fseek、rewind、fpassthru
- 55、PHP文件操作pathinfo、realpath、flock、tempnam、tmpfile
- 56、设置php.ini配置实现表单文件上传流程
- 57、PHP将上传到临时文件夹的文件移动到服务器指定文件夹内
- 58、PHP+input表单实现多文件上传
- 59、PHP通过超链接实现文件下载
- 60、发送header文件头信息实现文件下载
- 61、PHP中的日期时间_时区时间戳函数使用
- 62、PHP操作COOKIE缓冲区影响COOKIE传递方式
- 63、PHP中SESSION定义、建立、删除方式
- 64、PHP.INI配置文件中关于session的设置
- 65、HP中Session缓存的概念与用法
- 66、PHP自定义Session处理机制
- 67、通过MYSQL数据库操作Session会话完整源码类
- 68、PHP连接数据库实现分页代码
- 69、HTTP缓存实现原理详解
- 70、PHP连接数据库实现搜索+分页功能
- 71、PHP图像处理之建立画布填充颜色、打开不同图像类型处理
- 72、PHP颜色或图像填充及不同填充方式
- 73、PHP图像处理之画线&定义线样式&宽度&风格&笔刷
- 74、PHP图像处理:绘制色素及矩形图
- 75、PHP图像处理之画圆、弧线、网站饼状统计图绘制
- 76、PHP图像处理之绘制多边行及文字绘制
- 77、PHP 图像处理之获得文字宽高属性&图片水印函数功能
- 78、PHP生成图片验证码demo【OOP面向对象版本】
- 79、PHP图像处理 图像处理之处理文字及获得文字尺寸属性,imagecopymerge imagecop
- 80、替换用户输入的QQ表情
- 81、PHP封装MYSQL数据库操作类源码
- 82、PHP与XML技术结合使用解析