php 代码符计数行
2022-08-30 19:23:24
我是 codeigniter 的新手,我想计算数据库表中的所有行,但查询剂量不会检索确切的行总数。这是模型
public function countRow(){
$query = $this->db->query("SELECT *,count(id) AS num_of_time FROM home");
// print_r($query->result());
return $query->result();
}
这是控制器
public function countTotalrow(){
$data['query'] = $this->home_model->countRow();
}
这是视图
foreach ($num_of_time as $row){
<span><?php print_r($row->id);?></span>