对不起我的英语不好。这是一个代码:
public function showLastThreeNews(){
return News::model()->findBySql('SELECT * FROM news LIMIT 3;');
}
接下来,例如,我想获取查询的结果:
public function actionIndex()
{
$lastnews = $this->showLastThreeNews();
foreach ($lastnews as $news){
ChromePhp::log($lastnews->news_title);
}
$this->render('index', array(
'lastnews'=>$lastnews
));
}
问题是记录器向我显示一条记录三遍而没有更改到下一条记录。
我的错误是什么?