当前位置: 首页>>代码示例>>PHP>>正文


PHP Comment::getCommentInfoById方法代码示例

本文整理汇总了PHP中app\Comment::getCommentInfoById方法的典型用法代码示例。如果您正苦于以下问题:PHP Comment::getCommentInfoById方法的具体用法?PHP Comment::getCommentInfoById怎么用?PHP Comment::getCommentInfoById使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\Comment的用法示例。


在下文中一共展示了Comment::getCommentInfoById方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: commentToClassX

 public function commentToClassX(Request $request)
 {
     onlyAllowPostRequest($request);
     $all = $request->only(['post_id', 'author_id', 'content']);
     $comment = Comment::create(['post' => intval($all['post_id']), 'author' => intval($all['author_id']), 'content' => $all['content']]);
     $c = Comment::getCommentInfoById($comment->id);
     return response()->json($c);
 }
开发者ID:uethackathon,项目名称:uethackathon2015_team2server,代码行数:8,代码来源:CommentController.php

示例2: getCommentsByPostId

 /**
  * Get list comment by post_id
  *
  * @param $post_id
  *
  * @return null
  */
 public static function getCommentsByPostId($post_id)
 {
     $comments = Comment::all()->where('post', intval($post_id));
     if ($comments->count() == 0) {
         return [];
     }
     $listComments = [];
     foreach ($comments as $comment) {
         $listComments[] = Comment::getCommentInfoById($comment->id);
     }
     return $listComments;
 }
开发者ID:uethackathon,项目名称:uethackathon2015_team2server,代码行数:19,代码来源:Comment.php

示例3: comment

 public function comment(Request $request)
 {
     onlyAllowPostRequest($request);
     $all = $request->only(['post', 'author', 'content']);
     $comment = Comment::create(['post' => intval($all['post']), 'author' => intval($all['author']), 'content' => $all['content']]);
     $c = Comment::getCommentInfoById($comment->id);
     /**
      * Dữ liệu trả về
      */
     $response = new stdClass();
     $response->error = false;
     $response->comment = $c;
     return response()->json($response);
 }
开发者ID:uethackathon02,项目名称:uethackathon2015_team2server,代码行数:14,代码来源:CommentController.php


注:本文中的app\Comment::getCommentInfoById方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。