返信制限付きのコメントシステムを作りたいです。例えば:
#1st comment
## reply to the 1st comment
## reply to the 1st comment
#2nd comment
#3rd comment
## reply to the 3rd comment
したがって、コメントごとに 1 つの応答ツリーがあります。そして最後に、db からのオブジェクトの $comments 配列にあると仮定して、そのように使用したいと思います。
foreach($comments as $comment)
{
echo $comment->text;
if($comment->childs)
{
foreach($comment->childs as $child)
{
echo $child->text;
}
}
}
だから私は別のオブジェクトを作成する必要があると思いますが、それをすべて機能させる方法がわかりません。stdClass などを使用する必要がありますか? 前もって感謝します。