• 评论数据管理
    • 打开已群发文章评论
    • 关闭已群发文章评论
    • 查看指定文章的评论数据
    • 将评论标记精选
    • 将评论取消精选
    • 删除评论
    • 回复评论
    • 删除回复

    评论数据管理

    打开已群发文章评论

    1. $app->comment->open($msgId, $index = null);

    关闭已群发文章评论

    1. $app->comment->close($msgId, $index = null);

    查看指定文章的评论数据

    1. $app->comment->list(string $msgId, int $index, int $begin, int $count, int $type = 0);

    将评论标记精选

    1. $app->comment->markElect(string $msgId, int $index, int $commentId);

    将评论取消精选

    1. $app->comment->unmarkElect(string $msgId, int $index, int $commentId);

    删除评论

    1. $app->comment->delete(string $msgId, int $index, int $commentId);

    回复评论

    1. $app->comment->reply(string $msgId, int $index, int $commentId, string $content);

    删除回复

    1. $app->comment->deleteReply(string $msgId, int $index, int $commentId);