这是我的一段代码
$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);
该Files
模型包含一个count
字段。代码没问题,没有警告,但是保存方法不起作用。