Home > php教程 > php手册 > body text

php文章内容分页实例程序

WBOY
Release: 2016-06-13 10:02:13
Original
1017 people have browsed it

我们要写原生太的文章内容分页程序,原理很简单,就是在编辑时我们在编辑器中插入分页符,然后在显示时我们直接使用explode分页就可以实现了,当然有更高级的就是分页保存不同的记录,然后再生成相对复杂一些。

将正文按照一定字符串进行分割,分割后在按照页码进行数组索引,将当前页码对应数组的值输出即可,好像说得够晕的,下面来个实例:

 代码如下 复制代码

$str = "asd啊大叔大叔asd杀毒发[NextPage]生的啊师傅 asd 啊师傅asd a速度发啥地方";
//接收页码(如果不存在就为1)
$page = $_REQUEST['page'] ? $_REQUEST['page'] : 1;
//通过分割符分割内容
$arr = explode("[NextPage]",$str);
//如果分割出来的数组大小为1即未进行分页
if(count($arr)==1){
 echo $str;
}else{
 //按页码输出相应的内容
 echo $arr[$page-1];
 //分页页码
 for($i=1;$i   if($page == $i){//当前页
   echo "".$i." ";
  }else{
    echo "".$i." ";
  }
 }
}
?>

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template