0

选择查询不显示记录数组。

下面是我的get_all_user方法代码。

public  function get_all_user(){

 $query = $this->db->query("select * from user");
 echo"<pre/>";print_r($query);die;
}

当我打印 $query 时,它显示 result_array() 为空。请帮我解决这个问题。

4

1 回答 1

4

应该是这样的:

public function get_all_user()
{
  $query = $this->db->query("select * from user");
  $results = $query->result();
  echo"<pre/>";print_r($results);die;
}

或者你可以简单地这样做:

public function get_all_user()
{
  $results = $this->db->get("user")->result();
  print_r($results);die;
}

更多信息:https ://www.codeigniter.com/user_guide/database/query_builder.html

于 2018-07-11T06:00:17.443 回答