我正在尝试使用 php 实现一个线程评论系统,我发现一些已经写好的东西,但我不能完全了解如何使用它,我对类一点也不熟悉,所以我想知道是否有人可以帮助解释我是如何使用它的会使用代码。下面的代码来自网站
http://www.jongales.com/blog/2009/01/27/php-class-for-threaded-comments/
类的代码如下:
class Threaded_comments
{
public $parents = array();
public $children = array();
/**
* @param array $comments
*/
function __construct($comments)
{
foreach ($comments as $comment)
{
if ($comment['parent_id'] === NULL)
{
$this->parents[$comment['id']][] = $comment;
}
else
{
$this->children[$comment['parent_id']][] = $comment;
}
}
}
/**
* @param array $comment
* @param int $depth
*/
private function format_comment($comment, $depth)
{
for ($depth; $depth > 0; $depth--)
{
echo "\t";
}
echo $comment['text'];
echo "\n";
}
/**
* @param array $comment
* @param int $depth
*/
private function print_parent($comment, $depth = 0)
{
foreach ($comment as $c)
{
$this->format_comment($c, $depth);
if (isset($this->children[$c['id']]))
{
$this->print_parent($this->children[$c['id']], $depth + 1);
}
}
}
public function print_comments()
{
foreach ($this->parents as $c)
{
$this->print_parent($c);
}
}
}
该网站说使用的一个例子是:
$comments = array( array('id'=>1, 'parent_id'=>NULL, 'text'=>'Parent'),
array('id'=>2, 'parent_id'=>1, 'text'=>'Child'),
array('id'=>3, 'parent_id'=>2, 'text'=>'Child Third level'),
array('id'=>4, 'parent_id'=>NULL, 'text'=>'Second Parent'),
array('id'=>5, 'parent_id'=>4, 'text'=>'Second Child')
);
$threaded_comments = new Threaded_comments($comments);
$threaded_comments->print_comments();
但这是我遇到问题的地方。首先,我不确定我应该如何设置数据库,
目前它只有 3 行,
id
page
user
comment
我将使用 mysqli 准备好的语句查询这个数据库。大概是这样的:
$DBH = getDBH();
$q = $DBH->prepare("SELECT * FROM comments WHERE page = ?");
$q->bind_param("i", $page);
$q->execute();
但我不确定,我如何才能显示这个,我知道需要在数据库中添加另一行,以声明评论是否是另一个评论的子评论。任何帮助是极大的赞赏