我有一个来自我的数据库的 stdClass :
$query = $this->db->get('news');
if(isset($options['id']) || $options['limit'] == 1)
return $query->row(0);
我想将它传递给我的变量:
$data['news'] = $this->front_model->getNews($spec);
这样我就可以通过做$data['news']->id
但我收到此消息错误:
消息:stdClass 类的对象无法转换为字符串
为什么?