未定义的属性:stdClass :: $ title

时间:2014-11-20 16:29:20

标签: php mysql codeigniter

我想从数据库中获取没有parent_id的页面的记录,或者我们可以说没有父级的页面。

页面模型 ..........................................

public function get_no_parents() {
// fecth pages wihtout parents
$this->db->select ( 'id','title' );
$this->db->where ( 'parent_id', 0 );
$pages = parent::get ();
// if there are pages then return key as page->id and value $page->title
$array = array (
0 => 'no parent'
);

if(is_array($pages)){

foreach ($pages as $page){

 $array[$page->id]=$page->title;
   $return $array;


    }
  }
}

.....页面控制器

$this->data['pages_no_parents']=$this->Page_model->get_no_parents();
    var_dump($this->data['pages_no_parents']);

.... 转储为空我有两个错误

1-未定义属性:stdClass :: $ title

2-为foreach()

提供的参数无效 有人能帮帮我吗?

1 个答案:

答案 0 :(得分:1)

变化:

$this->db->select ( 'id','title' );

要:

$this->db->select ( 'id, title' );

希望这有帮助!