我的第35号视图/ blog / index.php是:
comment_id
我在表格评论中列了一栏,因为model/blog_model.php
仍无法正常工作
在我的$count = array(
'comment_count' => $total_count,
);
中,它的功能如下:
{{1}}
提前致谢
答案 0 :(得分:1)
你正在混淆你的记谱法。问题不是很清楚但是如果你设置了一个像...的数组索引
$count = array(
'comment_count' => $total_count,
);
我假设将$count
作为$post
传递到您的视图中并尝试像这样访问...
$post->comment_count
它不会工作,因为这不是数组表示法。正确的是......
$post['comment_count']
如果$post
和$count
是不同的对象,则需要执行..
$count['comment_count']