2

我坚持的简单问题:

这是我的活动记录查询:

public function get_org()
  {
    return $this->db
          ->get('organizations')
          ->row();
  }

这仅返回数据库中的第一行。如果我摆脱->row();它会返回这个奇怪的位:

object(CI_DB_mysql_result)#17 (8) {
  ["conn_id"]=>
  resource(8) of type (mysql link persistent)
  ["result_id"]=>
  resource(12) of type (mysql result)
  ["result_array"]=>
  array(0) {
  }
  ["result_object"]=>
  array(0) {
  }    
  ["custom_result_object"]=>
  array(0) {
  }
  ["current_row"]=>
  int(0)
  ["num_rows"]=>
  int(2)
  ["row_data"]=>
  NULL
}

奇怪的是,完全相同的查询在我的代码中针对不同表的其他地方完美运行。

建议?

4

2 回答 2

5

试试喜欢

public function get_org()
{
   $query = $this->db->get('organizations');

   foreach ($query->result() as $row)
   {
      $result_arr[] = $row;
   }
   return $result_arr; 
}

row()将只返回结果数组的一行。

或者您也可以尝试result_array()@Hashem Qolami所说的

public function get_org()
{
   $result = $this->db->get('organizations');
   return $result->result_array();
}
于 2013-08-27T05:28:35.483 回答
0

您也可以尝试以下给定的代码:

$query = $this->db->get('organizations');
return $query->result_array();

要了解有关在 CodeIgniter 中处理查询结果的更多信息:在 CodeIgniter 中处理查询结果

于 2013-08-27T06:01:03.163 回答