ThinkPHP_5 修改数据教程
发布时间:2020-04-26 | 发布者: 东东工作室 | 浏览次数: 次一:setField 更新某字段的值
1
$User = M("User"); // 实例化User对象
// 更改用户的name值
$User-< where('id=5')-<setfield('name','thinkphp');< p="" style="box-sizing: border-box; -webkit-tap-highlight-color: transparent;">
2 setField方法支持同时更新多个字段,只需要传入数组即可,例如:
$User = M("User"); // 实例化User对象
// 更改用户的name和email的值
$data = array('name'=<'ThinkPHP','email'=<'ThinkPHP@gmail.com');
$User-< where('id=5')-<setfield($data);< p="" style="box-sizing: border-box; -webkit-tap-highlight-color: transparent;">
而对于统计字段(通常指的是数字类型)的更新,系统还提供了setInc和setDec方法。
$User = M("User"); // 实例化User对象
$User-<where('id=5')-<setinc('score',3); 用户的积分加3
$User-<where('id=5')-<setinc('score'); 用户的积分加1
$User-<where('id=5')-<setdec('score',5); 用户的积分减5
$User-<where('id=5')-<setdec('score'); 用户的积分减1
官方文档:https://www.kancloud.cn/manual/thinkphp5/135178 更新数据表中的数据
Db::table('think_user')-<where('id', 1)-<update(['name'="<" 'thinkphp']);
如果数据中包含主键,可以直接使用:
Db::table('think_user')-<update(['name' =
update 方法返回影响数据的条数,没修改任何数据返回 0
如果要更新的数据需要使用SQL函数或者其它字段,可以使用下面的方式:
更新某个字段的值:
Db::table('think_user')-<where('id',1)-<setfield('name', 'thinkphp');
setField 方法返回影响数据的条数,没修改任何数据字段返回 0
自增或自减一个字段的值
setInc/setDec 如不加第二个参数,默认值为1
// score 字段加 1
Db::table('think_user')-<where('id', 1)-<setinc('score');
// score 字段加 5
Db::table('think_user')-<where('id', 1)-<setinc('score',="" 5);
// score 字段减 1
Db::table('think_user')-<where('id', 1)-<setdec('score');
// score 字段减 5
Db::table('think_user')-<where('id', 1)-<setdec('score',="" 5);
延迟更新
setInc/setDec支持延时更新,如果需要延时更新则传入第三个参数
下例中延时10秒,给score字段增加1
Db::table('think_user')-<where('id', 1)-<setinc('score',="" 1,="" 10);="" setinc="" setdec="" 方法返回影响数据的条数
助手函数
// 更新数据表中的数据
db('user')-<where('id',1)-<update(['name' =<="" 'thinkphp']);
// 更新某个字段的值
db('user')-<where('id',1)-<setfield('name','thinkphp');< p="" style="box-sizing: border-box; -webkit-tap-highlight-color: transparent;">
// 自增 score 字段
db('user')-<where('id', 1)-<setinc('score');
// 自减 score 字段
db('user')-<where('id', 1)-<setdec('score');
快捷更新(V5.0.5+)
V5.0.5+以上版本封装的data、inc、dec和exp方法属于链式操作方法,可以配合update使用。
下面举个例子说明用法:
Db::table('data')
转载请标注:东东工作室——ThinkPHP_5 修改数据教程