本文整理汇总了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');
}
示例2: countcomment
function countcomment($aid) {
$com=new comment();
return $com->rec_count('aid='.front::get('aid'));
}