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>

答案 1

您可以使用帮助程序函数$query->num_rows()

它返回查询返回的行数。你可以像这样使用:

$query = $this->db->query('SELECT * FROM my_table');
echo $query->num_rows();

答案 2

使用以下代码:

$this->db->where(['id'=>2])->from("table name")->count_all_results();

$this->db->from("table name")->count_all_results();


推荐