首页 > php框架 > YII > 正文

yii怎么更新数据

angryTom
发布: 2020-02-17 11:41:38
原创
4477 人浏览过

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怎么更新数据的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板