选择查询在编码器点火器中未给出结果?



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

下面是我的get_all_user方法代码。

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

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

应该是这样的:

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

相关内容

  • 没有找到相关文章

最新更新