ZBlogPHP::GetCommentByID PHP Method

GetCommentByID() public method

通过ID获取评论实例
public GetCommentByID ( integer $id ) : Comment
$id integer
return Comment
    public function GetCommentByID($id)
    {
        return $this->GetSomeThing('comments', 'ID', $id, 'Comment');
    }
ZBlogPHP