ZBlogPHP::GetCommentByID PHP Méthode

GetCommentByID() public méthode

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