yii怎么更新数据

广告:宝塔Linux面板高效运维的服务器管理软件 点击【 https://www.bt.cn/p/uNLv1L 】立即购买

yii怎么更新数据

yii怎么更新数据

1、使用update()

//runValidation boolen 是否通过validate()校验字段 默认为true //attributeNames array 需要更新的字段 $model->update($runValidation , $attributeNames);
登录后复制

2、使用updateAll();

相关文章教程推荐:yii教程

//update customer set status = 1 where status = 2Customer::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怎么更新数据的详细内容,更多请关注9543建站博客其它相关文章!

广告:SSL证书一年128.66元起,点击购买~~~

9543建站博客
一个专注于网站开发、微信开发的技术类纯净博客。

作者头像
admin创始人

肥猫,知名SEO博客站长,14年SEO经验。

上一篇:thinkphp5 大括号错误怎么解决
下一篇:微信小程序图片选择区域裁剪实现方法

发表评论

关闭广告
关闭广告