當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CommentModel::getCommentById方法代碼示例

本文整理匯總了PHP中CommentModel::getCommentById方法的典型用法代碼示例。如果您正苦於以下問題:PHP CommentModel::getCommentById方法的具體用法?PHP CommentModel::getCommentById怎麽用?PHP CommentModel::getCommentById使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CommentModel的用法示例。


在下文中一共展示了CommentModel::getCommentById方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: addalbumComment

 public function addalbumComment()
 {
     if (!$_SESSION['qq']) {
         $result['code'] = '021';
         $result['message'] = '未登錄,請登錄賬號!';
     } else {
         //實例化model
         $commentModel = new CommentModel();
         $albumModel = new AlbumModel();
         $albumId = $_GET['albumId'];
         $content = $_GET['comment'];
         //根據相冊id查詢相冊信息
         $albumInfo = $albumModel->getAlbumById($albumId);
         $data = array('userId' => $_SESSION['qq']['userId'], 'albumId' => $albumId, 'content' => $content, 'adminId' => $albumInfo['adminId']);
         $commentId = $commentModel->addComment($data);
         if ($commentId) {
             $commentInfo = $commentModel->getCommentById($commentId);
             $result['code'] = '0';
             $result['message'] = '恭喜,評論成功!';
             $result['info'] = $commentInfo;
         } else {
             $result['code'] = '022';
             $result['message'] = '抱歉,評論失敗!';
         }
     }
     echo json_encode($result);
     exit;
 }
開發者ID:Jnnock,項目名稱:myyyk,代碼行數:28,代碼來源:AlbumCtrl.class.php

示例2: addAlbumComment

 public function addAlbumComment()
 {
     if (!$_SESSION['qq']) {
         $result['code'] = "021";
         $result['message'] = "未登錄,請登錄賬號!";
     } else {
         $_POST['content'] = Data::filter($_POST['content'], 9);
         $_POST['albumId'] = Data::get($_POST['albumId'], Data::Int);
         $_POST['adminId'] = Data::get($_POST['adminId'], Data::Int);
         $_POST['userId'] = Data::get($_POST['userId'], Data::Int);
         $comment = new CommentModel();
         $row = $comment->addComment($_POST);
         if ($row) {
             $comments = $comment->getCommentById($row);
             $result['info'] = $comments;
             $result['code'] = "0";
             $result['message'] = "恭喜,評論成功!";
         } else {
             $result['code'] = "022";
             $result['message'] = "評論失敗";
         }
     }
     echo json_encode($result);
     exit;
 }
開發者ID:Jnnock,項目名稱:myyyk,代碼行數:25,代碼來源:IndexCtrl.class.php


注:本文中的CommentModel::getCommentById方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。