Java教程

TP5 事务处理加锁

本文主要是介绍TP5 事务处理加锁,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<?php

namespace app\test\controller;

use think\Controller;

use think\Db;

class Index extends Controller
{
    
    public function index()
    {
        $time = date('H:i:s');
        
        // 开启事务
        Db::startTrans();
        
        db('sms')->lock(true)->select();//加锁
        
        $update1 = db('sms')->where(['id' => 1])->update(['email' => 1]);
        
        $update2 = db('sms')->where(['id' => 2])->update(['email' => 2]);
        
        $update3 = db('sms')->where(['id' => 3])->update(['email' => 3]);
        
        sleep(10);
        
        if($update1 && $update2 && $update3){
            Db::commit();//提交
            return $time.'_lock_true_'.date('H:i:s').'---'.$update1.'---'.$update2.'---'.$update3;
        }else{
            Db::rollback();//回滚
            return $time.'_lock_false_'.date('H:i:s').'---'.$update1.'---'.$update2.'---'.$update3;
        }
        
    }
    
    


}
View Code

打开两个网页同时刷新,效果如下:

 

 数据库:

 

 

 

 

 

 

_______________

 

这篇关于TP5 事务处理加锁的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!