我想在模型中返回一行id = 4的表的字段,例如Post。
我应该使用find()方法或findByAttributes()?它的正确语法是什么?
答案 0 :(得分:1)
要通过主键获取模型,我建议使用`findByPk()。这是最简单的使用方法之一;
$id = 4;
$model = Post::model()->findByPk($id);
对于其他方法语法,请仔细阅读Yii Active Record wiki和Yii Active Record documentation,它们在开始时非常有用。