Home > php教程 > php手册 > Thinkphp简单的无限评论回复

Thinkphp简单的无限评论回复

WBOY
Release: 2016-06-07 11:35:54
Original
1410 people have browsed it

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

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

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

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