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


PHP comment::rec_count方法代码示例

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


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

示例1: comment

 function list_action() {
     front::check_type(front::get('aid'));
     $this->view->article=archive::getInstance()->getrow(front::get('aid'));
     $this->view->page=front::get('page')?front::get('page'):1;
     $this->pagesize=config::get('list_pagesize');
     $limit=(($this->view->page-1)*$this->pagesize).','.$this->pagesize;
     $comment=new comment();
     $this->view->comments=$comment->getrows('state=1 and aid='.front::get('aid'),$limit);
     $this->view->record_count=$comment->rec_count('state=1 and aid='.front::get('aid'));
     front::$record_count=$this->view->record_count;
     $this->view->aid=front::get('aid');
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:12,代码来源:comment_act.php

示例2: countcomment

 function countcomment($aid) {
     $com=new comment();
     return $com->rec_count('aid='.front::get('aid'));
 }
开发者ID:jiangsuei8,项目名称:public_php_shl,代码行数:4,代码来源:front_class.php


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