예제 #1
0
 public function return_comments_list($comment_id)
 {
     $comment = new comments();
     $res = $comment->select_all($comment_id);
     echo json_encode($res);
     return;
 }