Codeigniter 2.x, ActiveRecord, var_dump(), каков ожидаемый результат?

Я пытаюсь отладить некоторые проблемы с просмотром данных из базы данных. Я использую codeigniter 2.x и активные записи. Вот мой код:

$data = $this->db->select('country_id', 'country')->from('mhcountry')->get()->result();

    var_dump($data);
    die;    

Var_dump возвращает следующее:

array(20) { [0]=> object(stdClass)#21 (1) { ["country_id"]=> string(1) "1" } [1]=> object(stdClass)#22 (1) { ["country_id"]=> string(1) "2" } [2]=> object(stdClass)#23 (1) { ["country_id"]=> string(1) "3" } [3]=> object(stdClass)#24 (1) { ["country_id"]=> string(1) "4" } [4]=> object(stdClass)#25 (1) { ["country_id"]=> string(1) "5" } [5]=> object(stdClass)#26 (1) { ["country_id"]=> string(1) "6" } [6]=> object(stdClass)#27 (1) { ["country_id"]=> string(1) "7" } [7]=> object(stdClass)#28 (1) { ["country_id"]=> string(1) "8" } [8]=> object(stdClass)#29 (1) { ["country_id"]=> string(1) "9" } [9]=> object(stdClass)#30 (1) { ["country_id"]=> string(2) "10" } [10]=> object(stdClass)#31 (1) { ["country_id"]=> string(2) "11" } [11]=> object(stdClass)#32 (1) { ["country_id"]=> string(2) "12" } [12]=> object(stdClass)#33 (1) { ["country_id"]=> string(2) "13" } [13]=> object(stdClass)#34 (1) { ["country_id"]=> string(2) "14" } [14]=> object(stdClass)#35 (1) { ["country_id"]=> string(2) "15" } [15]=> object(stdClass)#36 (1) { ["country_id"]=> string(2) "16" } [16]=> object(stdClass)#37 (1) { ["country_id"]=> string(2) "17" } [17]=> object(stdClass)#38 (1) { ["country_id"]=> string(2) "18" } [18]=> object(stdClass)#39 (1) { ["country_id"]=> string(2) "19" } [19]=> object(stdClass)#40 (1) { ["country_id"]=> string(2) "20" } }

У меня есть 20 стран, введенных от 1 до 20, НО я не вижу названия своих стран в var_dump. Это просто сброс первого поля. Это нормально или ожидается?

Я попробовал то же самое на другом столе, и он также просто возвращает первое поле.

2 ответа

Решение

Вы должны обратить внимание на документацию здесь, в то же время вы можете попробовать это:

$this->db->select(array('country_id', 'country'))
// OR
$this->db->select('country_id, country')
$data = $this->db->select('country_id', 'country')->from('mhcountry')->get()->result();

Это не верно. он получит только country_id.
Использовать этот

$data = $this->db->select('country_id , country')->from('mhcountry')->get()->result();
Другие вопросы по тегам