|
本帖最后由 阿呆 于 2011-12-29 17:26 编辑
$my_recent_cmts = $this->comments_mdl->get_cmts_by_owner('comment', 'approved', $this->user->uid, 5, 0);
//echo($my_recent_cmts->result()->pid); //这里 会输出错误
//exit();
if($my_recent_cmts->num_rows() > 0)
{
foreach($my_recent_cmts->result() as $recent_cmt)
{
//echo($recent_cmt->pid); //这里 输出正确
//exit();
$recent_cmt->parent_post = $this->posts_mdl->get_post_by_id('pid', $recent_cmt->pid);
}
}
上面的echo会出错,下面的却正确,是为什么啊。
还有 $recent_cmt->parent_post 这个东西是什么。
print_r这个( $my_recent_cmts )结果是:
【
CI_DB_mysql_result Object ( [conn_id] => Resource id #36 [result_id] => Resource id #70 [result_array] => Array ( ) [result_object] => Array ( ) [current_row] => 0 [num_rows] => 1 [row_data] => )
】
|
|