CodeIgniter - return only one row?

后端 未结 10 1366
鱼传尺愫
鱼传尺愫 2020-12-01 02:43

At the moment if I am doing a query on the database that should only return one row, using:

...query stuff...
$query = $this->db->get();
$ret = $query-         


        
10条回答
  •  自闭症患者
    2020-12-01 03:08

    If you require to get only one record from database table using codeigniter query then you can do it using row(). we can easily return one row from database in codeigniter.

    $data = $this->db->get("items")->row();
    

提交回复
热议问题