遇到PHP错误严重性:通知消息:未定义属性:stdClass :: $ comment_count文件名:blog / index.php行号:35

时间:2015-06-10 04:57:51

标签: php mysql codeigniter

我的第35号视图/ blog / index.php是:

comment_id

我在表格评论中列了一栏,因为model/blog_model.php仍无法正常工作

在我的$count = array( 'comment_count' => $total_count, ); 中,它的功能如下:

{{1}}

提前致谢

1 个答案:

答案 0 :(得分:1)

你正在混淆你的记谱法。问题不是很清楚但是如果你设置了一个像...的数组索引

$count = array(
    'comment_count' => $total_count,
);

我假设将$count作为$post传递到您的视图中并尝试像这样访问...

$post->comment_count 

它不会工作,因为这不是数组表示法。正确的是......

$post['comment_count']

如果$post$count是不同的对象,则需要执行..

$count['comment_count']