この記事は主に NetEase のコメントを模倣して構築する 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;
キー フィールドは、参照されたコメントの ID を保存する、参照がない場合は 0 に設定します。
特定の実装では、主に再帰アルゴリズムを使用して、参照されているすべてのコメントを検索します (
無限分類メニューと同様) コードは次のとおりです: ';
foreach($comment_arr as $key => $value) {
$str.= ' ';
$str.= ' '.$value['username'] .'';
$str.= '' . $value['time'] .' 发表';
$str.= ' " . $value['content'] ."<?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.= '
';
$tmp.= $htmlStr;
$tmp.= '' . $value['username'] .' 原贴:
' . $value['content'];
$tmp.= '