yii怎么更新数据

yii怎么更新数据,第1张

yii怎么更新数据

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怎么更新数据的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/web/702255.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-23
下一篇 2022-04-23

发表评论

登录后才能评论

评论列表(0条)

保存