我正在尝试像 Disqus 一样创建一个评论线程。我无法在 PHP 中设置逻辑以显示评论,以便可以回复每条评论,然后这些评论将保持相互关联。
这是我的 MySQL 评论表:
comment_id comment item_id replied_to_id time
1 hello1 1 1 1:00pm
2 hello2 1 1 2:00pm
3 hello3 1 3 3:00pm
4 hello4 2 4 4:00pm
5 hello5 1 2 2:00pm
6 hello6 1 3 6:00pm
item_id
是一列,指示评论正在讨论的父项。
如果我从我的数据库中提取所有带有 的评论item_id=1
,那么我不确定如何将它们串起来以使comment_id
andreplied_to_id
得到适当的匹配。例如,comment_id=2
应该匹配到comment_id=1
.
这是我的PHP:
<?foreach($comments as $row){
if($row->comment_id==$row->replied_to_id){
echo $row->comment."-".$row->time; //desired output: hello1-1:00pm
foreach($comments as $sub_row){
if($row->comment_id!=$sub_row->replied_to_id){
echo $sub_row->comment."-".$sub_row->time;// desired output: hello2-2:00pm
foreach($comments as $sub_sub_row){
if($row->comment_id!=$sub_sub_row->replied_to_id){
echo $sub_sub_row->comment."-".$sub_sub_row->time;// desired output: hello5-5:00pm
}
}
}
}
}
else{
echo $row->comment."-".$row->time; // desired output: hello3-3:00pm
}
}
这看起来不对。必须有更好的方法来做到这一点。