yii怎麼更新資料
#1、使用update()
//runValidation boolen 是否通过validate()校验字段 默认为true //attributeNames array 需要更新的字段 $model->update($runValidation , $attributeNames);
2、使用updateAll();
相關文章教學推薦:yii教學
//update customer set status = 1 where status = 2 Customer::updateAll(['status' => 1], 'status = 2'); //update customer set status = 1 where status = 2 and uid = 1; Customer::updateAll(['status' => 1], ['status'=> '2','uid'=>'1']);
3、使用save( );
$customer = Customer::find() ->where(['id' => 1]) ->one(); $customer->name = 'zhangsan'; $customer->save();
更多YII相關教程及程式設計知識,請造訪程式設計學習課程。
以上是yii怎麼更新數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!