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


PHP CommentModel::getCommentCountByArticleId方法代码示例

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


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

示例1: index

 public function index()
 {
     //var_dump($_SESSION['qq']);
     $articleId = $_GET['articleId'];
     $article = new ArticleModel();
     $content = $article->getArticleById($articleId);
     $collect = new CollectModel();
     $comment = new CommentModel();
     $commentNum = $comment->getCommentCountByArticleId($articleId);
     $content['commentNum'] = $commentNum;
     if ($this->isLogin()) {
         if ($collect->getCollects($article, $_SESSION['qq']['userId'])) {
             $this->assign('collects', '已收藏');
         } else {
             $collectNum = $collect->getCollectCountByuserId($article);
             $this->assign('collectNum', $collectNum);
             $this->assign('collects', '收藏');
         }
     }
     $this->assign('article', $content);
     //评论查询
     $comments = $comment->getComment($articleId);
     $user = new UserModel();
     $arr = array();
     foreach ($comments as $key => $val) {
         $val[$key]['user'] = $user->getUserById($val['userId']);
     }
     $this->assign('comments', $comments);
     $this->display();
 }
开发者ID:Jnnock,项目名称:myyyk,代码行数:30,代码来源:ArticleCtrl.class.php

示例2: getArticleById

 public function getArticleById()
 {
     $errors = $this->errors;
     $articleId = $_GET['articleId'];
     //实例化Model
     $adminModel = new AdminModel();
     //博主
     $articleModel = new ArticleModel();
     //文章
     $articleTypeModel = new ArticleTypeModel();
     //文章分类
     $articleTagModel = new ArticleTagModel();
     //文章标签
     $commentModel = new CommentModel();
     //评论
     $collectModel = new CollectModel();
     //文章收藏
     //获取所有文章分类
     $allTypes = $articleTypeModel->getCatrgoryByAdminId($_SESSION['admin']['adminId']);
     $allTypes = formatkey($allTypes, 'typeId');
     //设置typeId主键
     //获取所有文章标签
     $allTags = $articleTagModel->getArticleTag();
     $allTags = formatkey($allTags, 'tagId');
     //设置typeId主键
     $articleInfo = $articleModel->getArticleById($articleId);
     if ($articleInfo['tagId']) {
         $articleInfo['tagId'] = explode(',', trim($value['tagId'], ','));
     }
     //查询评论数
     $articleInfo['commentCount'] = $commentModel->getCommentCountByArticleId($articleId);
     //查询收藏数
     $articleInfo['collectCount'] = $collectModel->getCollectCountByArticleId($articleId);
     //获取最新的评论
     $comment = $commentModel->getComment($articleId, '0,2');
     //博主信息
     $adminInfo = $adminModel->getAdminById($_SESSION['admin']['adminId']);
     $this->assign("admin", $adminInfo);
     //文章
     $this->assign("article", $articleInfo);
     //文章
     $this->assign("allTags", $allTags);
     //所有文章标签
     $this->assign("allTypes", $allTypes);
     //某人所有文章分类
     $this->assign("comment", $comment);
     //某人所有文章分类
 }
开发者ID:Jnnock,项目名称:myyyk,代码行数:48,代码来源:AdminCtrl.class.php

示例3: articleInfo

 public function articleInfo()
 {
     //实例化Model
     $articleModel = new ArticleModel();
     //文章
     $commentModel = new CommentModel();
     //评论
     $collectModel = new CollectModel();
     //文章收藏
     $articleId = Data::get($_GET['articleId'], Data::Int);
     if (!is_int($articleId) && $articleId <= 0) {
         R('Index', 'index');
     }
     $articleModel->setIncArticleByHitNum($articleId);
     //文章信息
     $content = $articleModel->getArticleById($articleId);
     //文章评论数
     $commentNum = $commentModel->getCommentCountByArticleId($articleId);
     $content['commentNum'] = $commentNum;
     //文章收藏数
     $collectNum = $collectModel->getCollectCountByarticleId($articleId);
     $content['collectNum'] = $collectNum;
     //是否已经收藏
     $if_collect = 0;
     if ($_SESSION['qq']) {
         if ($collectModel->getCollects($articleId, $_SESSION['qq']['userId'])) {
             $if_collect = 1;
         }
     }
     //评论查询
     $comments = $commentModel->getComment($articleId);
     //用户个人信息
     $allUserInfo = $this->getAllUserInfo();
     //博主个人信息
     $blogerInfo = $this->getBlogerInfo($content['adminId']);
     //获取所有文章分类
     $allTypes = $this->getAllTypes($content['adminId']);
     //获取所有文章标签
     $allTags = $this->getAllTags();
     //文章总数
     $count = $this->articleCount($content['adminId']);
     //最新三条评论
     $latestComments = $this->getLatestComments($content['adminId'], '0,3');
     $this->assign('count', $count);
     //某博主文章总数
     $this->assign("allTags", $allTags);
     //所有文章标签
     $this->assign("allTypes", $allTypes);
     //某人所有文章分类
     $this->assign('blogerInfo', $blogerInfo);
     //某博主信息
     $this->assign('allUserInfo', $allUserInfo);
     //某用户信息
     $this->assign('latestComments', $latestComments);
     //最新三条评论
     $this->assign('if_collect', $if_collect);
     //是否已经收藏
     $this->assign('article', $content);
     //文章详情
     $this->assign('comments', $comments);
     $this->display();
 }
开发者ID:Jnnock,项目名称:myyyk,代码行数:62,代码来源:IndexCtrl.class.php


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