欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

Thinkphp简单的无限评论回复

程序员文章站 2022-06-05 15:19:04
...
这不知道谁发的无限评论回复,已在基础上修改了样式,并替换了最新的框架Thinkphp3.2.3.
Thinkphp简单的无限评论回复
无限递归评论:function CommentList($pid = 0, &$commentList = array(), $spac = 0) {
static $i = 0;
$spac = $spac + 1; //初始为1级评论
$List = M('comment')->
field('id,add_time,author,content,pid')->
where(array('pid' => $pid))->order("id DESC")->select();
foreach ($List as $k => $v) {
$commentList[$i]['level'] = $spac; //评论层级
$commentList[$i]['author'] = $v['author'];
$commentList[$i]['id'] = $v['id'];
$commentList[$i]['pid'] = $v['pid']; //此条评论的父id
$commentList[$i]['content'] = $v['content'];
$commentList[$i]['time'] = $v['add_time'];
// $commentList[$i]['pauthor']=$pautor;
$i++;
$this->CommentList($v['id'], $commentList, $spac);
}
return $commentList;
}
评论和回复在线演示地址:http://www.sucaihuo.com/js/557.html

Thinkphp简单的无限评论回复 Thinkphp带表情的无限评论回复.zip ( 2.91 MB 下载:278 次 )

AD:真正免费,域名+虚机+企业邮箱=0元