📜  codeigniter get num_rows - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:52.295000             🧑  作者: Mango

代码示例1
// num rows example
$this->db->select('*');
$this->db->where('whatever');
$query = $this->db->get('table');
$num = $query->num_rows();