仿网易评论盖楼PHP+Mysql实现

不言
发布: 2018-06-04 09:59:24
原创
4444人浏览过

这篇文章主要介绍了关于仿网易评论盖楼PHP+Mysql实现,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

大家可能都看过网易评论的那种盖楼式的引用,这边文章就用php和mysql来实现这种效果。

先设计数据表来存放评论数据:

DROP TABLE IF EXISTS `comment`;
CREATE TABLE `comment` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL,
  `site` varchar(128) DEFAULT NULL,
  `content` varchar(1000) NOT NULL,
  `time` datetime NOT NULL,
  `pid` int(10) NOT NULL,
  `articleid` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
登录后复制

其中的关键字段就是pid,保存的是引用评论的id,如果没有引用那么设为0即可。

具体的实现主要是通过递归算法来找出所有引用的评论(和无限分类菜单类似),代码如下:

<?php 
    require_once"sqlHelper.class.php";
     
    //连接数据库
    $sqlHelper= new SqlHelper('localhost','root', 'root','test', 3306);
 
    //插入评论数据
    if(isset($_POST) && !empty($_POST)){
        $comment= array();
        $comment['username'] =$_POST['name']?$_POST['name']:'匿名';
        $comment['site'] =$_POST['site']?$_POST['site']:'
 '; 
        $comment['pid'] =$_POST['commentid']?$_POST['commentid']:'0';
        if($comment['pid']
 == $comment['id']){
            $comment['pid'] ='0';
        }
        $comment['content'] =$_POST['content']?$_POST['content']:'...';
        $comment['articleid'] =$_POST['articleid']?$_POST['articleid']:'1';
        $comment['time'] = date ( 'Y-m-d H:i:s', time () );
 
        $sql_str= $sqlHelper->get_replace_db_sql("comment",$comment);
        //echo $sql_str;
        $sqlHelper->insert_db($sql_str);
    }
?>
 
<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"xml:lang="en">
 
<head>
 
    <meta http-equiv="Content-Type"content="text/html;charset=UTF-8"/>
    <title>文章评论的无限引用实现</title>
    <style type="text/css">
        *{margin:0;padding:0;}
        body{margin:10px;font-size:14px;font-family:宋体}
        h1{font-size:26px;margin:10px 0 15px;}
        #commentHolder{width:540px;border-bottom:1px solid #aaa;}
        .comment{padding:5px 8px;background:#f8fcff;border:1px solid #aaa;font-size:14px;border-bottom:none;}
        .comment p{padding:5px 0;}
        .comment p.title{color:#1f3a87;font-size:12px;}
        .comment p span{float:right;color:#666}
        .comment p{background:#ffe;padding:3px;border:1px solid #aaa;line-height:140%;margin-bottom:5px;}
        .comment p span{color:#1f3a87;font-size:12px;}
    </style>
</head>
<body>
 
<?php
     
    functionp($str){
        echo"<pre class="brush:php;toolbar:false">";
        if(is_array($str))
            print_r($str);
        else
            echo$str;
        echo"
登录后复制
";     }       /*         获取文章id对应的所有评论,以数组的形式返回结果     */     functiongetCommentByArticleId($articleid=1){         $result= array();         if(empty($articleid)  || !is_numeric($articleid)){             return$result;         }           $sql= 'select * from comment where articleid = '. $articleid;         global$sqlHelper;         $result= $sqlHelper->get_all($sql);         //p($result);         return$result;     }           /*         把评论数组数据转换为html格式     */     functioncommentArr2Html($comment_arr) {         $str= '';         if(is_array($comment_arr)  && !empty($comment_arr)){             $str.= '

';                           foreach($comment_arr as $key => $value) {                 $str.= '

';                 $str.= '

'.$value['username'] .'';                 $str.= '' . $value['time'] .' 发表';                 $str.= '

';                   global$temp_arr;                 $temp_arr= array();                               //这里去查找当前评论下的所有引用的评论,并格式化为html字符串                 $tmpStr= '';                 addCommentNode($comment_arr,$value);                 krsort($temp_arr);//根据key倒叙排序数组                 $tmpStr= getChildComment($temp_arr);//添加所有的引用评论                 $str.= $tmpStr;                   $str.= "

" . $value['content'] ."

立即学习PHP免费学习笔记(深入)”;

";                 $str.= '';             }               $str.='';         }         return$str;      }           /*         把temp_arr数组中保存的引用评论信息转换为html形式     */     functiongetChildComment($temp_arr){         $htmlStr= '';         if(!is_array($temp_arr)  || empty($temp_arr)){             return'';         }         foreach($temp_arras $value){             $tmp= '

';             $tmp.= $htmlStr;             $tmp.= '' . $value['username'] .'  原贴:
' . $value['content'];             $tmp.= '

';             $htmlStr= $tmp;         }         return$htmlStr;       }       /*         list代表某一文章下的全部评论列表         cmt代表当前要显示的评论      */     functionaddCommentNode($list,$cmt){           if(isset($cmt['pid'])  && $cmt['pid'] !='0'){             $find= findParentCmt($list,$cmt['pid']);//找寻id等于当前评论的pid的评论,返回数组。             // 递归调用,只要pid不为零,就加入到引用评论列表             addCommentNode($list,$find);         }else{             return;         }       }       /**      * 查找list中找寻id等于pid的数组项,并返回      * @param  [type] $list  [description]      * @param  [type] $cmtpid [description]      * @return [type]        [description]      */     functionfindParentCmt($list,$cmtpid){         foreach($list as $key => $value) {             if($value['id']  == $cmtpid){                 /* 用数组的方式来保存所有引用的评论 */                 global$temp_arr;                 $temp_arr[] =$list[$key];                 //p($list[$key]);echo "
";                 return$list[$key];             }         }         returnfalse;     }           $temp_arr= array();//设一个全局的数组变量来保存引用评论的信息     $list= getCommentByArticleId();//通过文章id获取所有的文章评论     $htmlStr= commentArr2Html($list);//把获取到的评论格式化转换为html形式 ?>     
        

文章评论的无限引用PHP+Mysql实现



                                                        
          你的名字:
        联系方式或个人网站:
        选择引用的评论:         
        评论内容酷站网软:
                          
      

以上就是仿网易评论盖楼PHP+Mysql实现的详细内容,更多请关注php中文网其它相关文章!

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号