本文整理匯總了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;
}
示例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;
}