ThinkPHP5.0 模型删除操作
2021-07-03 00:04
标签:方法 条件 批量删除 闭包 空字符串 span status 字符串 where 1、删除模型数据,可以在实例化后调用 2、根据主键删除(5.0.9版本以上destroy方法传入空数组和空字符串不会进行任何删除操作) 3、条件删除 ThinkPHP5.0 模型删除操作 标签:方法 条件 批量删除 闭包 空字符串 span status 字符串 where 原文地址:http://www.cnblogs.com/520fyl/p/7127431.htmldelete
方法$user = User::get(1);
$user->delete();
User::destroy(1);
// 支持批量删除多个数据
User::destroy(‘1,2,3‘);
// 或者
User::destroy([1,2,3]);
数组进行条件删除
User::destroy([‘status‘ => 0]);// 删除状态为0的数据
闭包删除
User::destroy(function($query){
$query->where(‘id‘,‘>‘,10);
});
数据库类的查询条件删除
User::where(‘id‘,‘>‘,10)->delete();
上一篇:org.apache.hadoop.mapreduce.lib.input.InvalidInputException: Input path does not exist: file:/input
文章标题:ThinkPHP5.0 模型删除操作
文章链接:http://soscw.com/index.php/essay/101014.html