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


PHP CommentModel::getCommentByAlbumId方法代码示例

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


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

示例1: photoInfo

 public function photoInfo()
 {
     $albumId = $_GET['albumId'];
     //实例化Model
     $photoModel = new PhotosModel();
     $albumModel = new AlbumModel();
     $commentModel = new CommentModel();
     $userModel = new UserModel();
     $articletypeModel = new ArticleTypeModel();
     $articleTagModel = new ArticleTagModel();
     //用户个人信息
     $allUserInfo = $userModel->getAllUserInfo();
     //博主个人信息
     $blogerInfo = $this->getBlogerInfo($blogerId);
     //获取所有文章分类
     $allTypes = $articletypeModel->getCatrgoryByadminId($blogerId);
     //var_dump($allTypes);
     //获取所有文章标签
     $allTags = $articleTagModel->getArticleTag();
     //最新三条评论
     $latestComments = $commentModel->getLatestComments($blogerId, '0,3');
     //根据相册id集查询所有评论
     $comments = $commentModel->getCommentByAlbumId($ArrAlbumId);
     //相册评论数
     $photoCollectNum = $commentModel->getCommentByArrAlbumId($ArrblogerId);
     $photo['photoCollectNum'] = $photoCollectNum;
     //获取该相册的所有照片
     $photoNum = $photoModel->getPhotos($blogerId, $limit = '');
     $photo['photoNum'] = $photoNum;
     //某相册的照片数量
     $photocount = $photoModel->getPhotosCountByAlbumId($AlbumId);
     $photo['photocount'] = $photocount;
     //根据照片id查询照片信息
     $photoInfo = $photoModel->getPhotosById($value['photoId']);
     if ($count > $pagesize) {
         $page = new Page($count, $p, $pagesize);
         $str = $page->show('themeuk.php');
     }
     $this->assign('page', $str);
     $this->assign('photoNum', $photoNum);
     //某相册所有照片
     $this->assign('photoCollectNum', $photoCollectNum);
     //某相册的评论总数
     $this->assign('blogerInfo', $blogerInfo);
     //某博主信息
     $this->assign('allUserInfo', $allUserInfo);
     //某用户信息
     $this->assign('latestComments', $latestComments);
     //最新三条评论
     $this->assign('allTypes', $allTypes);
     //所有文章分类
     $this->assign('photoInfo', $photoInfo);
     //照片信息
     $this->assign("allTags", $allTags);
     //所有文章标签
     $this->assign('photocount', $photocount);
     //某相册的照片数量
     $this->assign('photo', $photo);
     //照片信息
     $this->assign('comments', $comments);
     $this->display();
 }
开发者ID:Jnnock,项目名称:myyyk,代码行数:62,代码来源:AlbumCtrl.class.php

示例2: albumInfo

 public function albumInfo()
 {
     $blogerId = Data::get($_GET['blogerId'], Data::Int);
     $albumId = Data::get($_GET['albumId'], Data::Int);
     if (!is_int($blogerId) && $blogerId <= 0) {
         R('Index', 'index');
     }
     if (!is_int($albumId) && $albumId <= 0) {
         R('Index', 'index');
     }
     // $blogerId=$_GET['blogerId'];
     // $albumId=$_GET['albumId'];
     $album = new AlbumModel();
     $albums = $album->getAlbumById($albumId);
     $photo = new PhotosModel();
     $photos = $photo->getPhotos($albumId);
     $time = 0;
     foreach ($photos as $v) {
         $addtime = strtotime($v['addTime']);
         if ($time < $addtime) {
             $time = $addtime;
         }
     }
     $time = date("Y-m-d H:i:s", $time);
     $photoCount = $photo->getPhotosCountByAlbumId($albumId);
     $comment = new CommentModel();
     $a = $comment->getCommentByAlbumId($albumId);
     $user = new UserModel();
     $comments = array();
     foreach ($a as $v) {
         $users = $v;
         $users['user'] = $user->getUserById($v['userId']);
         $comments[] = $users;
     }
     //博主个人信息
     $blogerInfo = $this->getBlogerInfo($blogerId);
     $this->assign('blogerInfo', $blogerInfo);
     //某博主信息
     $count = $this->articleCount($blogerId);
     $this->assign('count', $count);
     //某博主文章总数
     //获取所有文章标签
     $allTags = $this->getAllTags();
     $this->assign("allTags", $allTags);
     //所有文章标签
     //获取所有文章分类
     $allTypes = $this->getAllTypes($blogerId);
     $this->assign("allTypes", $allTypes);
     //某人所有文章分类
     $latestComments = $this->getLatestComments($blogerId, '0,3');
     $this->assign('latestComments', $latestComments);
     //最新三条评论
     //用户个人信息
     $allUserInfo = $this->getAllUserInfo();
     $this->assign('allUserInfo', $allUserInfo);
     //某用户信息
     //该相册下的所有评论
     $this->assign('comments', $comments);
     //该相册下的所有相片
     $this->assign('photos', $photos);
     //相片最后的添加时间
     $this->assign('time', $time);
     //相册的相片数
     $this->assign('photoCount', $photoCount);
     //相册的部分信息
     $this->assign('album', $albums);
     $this->display();
 }
开发者ID:Jnnock,项目名称:myyyk,代码行数:68,代码来源:IndexCtrl.class.php


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