站长百科 | 数字化技能提升教程 数字化时代生存宝典
导航:上一页
ThinkPHP支持查询或者更新的锁定,只需要在查询或者更新之前使用lock方法即可。
PHP代码
$list = $User->lock(true)->where('status=1')->order('create_time')->limit(10)->select();
$list = $User->lock(true)->where('status=1')->data($data)->save();