这是我的一段代码
$file=Files::model()->findByPk($id);
if($file == null) {
throw new CHttpException(404,'Not found');
}
$count = $file->count;
$count++;
$file->count = $count;
$file->save();
$this->redirect(Yii::app()->request->hostInfo."/".$file->path);
Run Code Online (Sandbox Code Playgroud)
该Files模型包含一个count字段.代码没问题,没有警告,但是save方法不起作用.
yii ×1