This article mainly introduces the method of implementing transaction operations in ThinkPHP 3.2.2, briefly analyzes the startup, submission, rollback and other operation methods of transactions in thinkPHP and gives complete transaction submission and rollback operation examples. Friends can refer to
This article describes the method of implementing transaction operations in ThinkPHP 3.2.2. Share it with everyone for your reference, the details are as follows:
The manual says it very clearly:
5.3.19 Transaction support
ThinkPHP provides single The database's transaction support. If you want to use transactions in application logic, you can refer to the following method:
Start a transaction:
$User->startTrans()
Commit transaction:
$User->commit()
Transaction rollback:
$User->rollback()
Transactions are for the database itself, so they can operate across models.
For example:
// 在User模型中启动事务 $User->startTrans() // 进行相关的业务逻辑操作 $Info = M("Info"); // 实例化Info对象 $Info->save($User); // 保存用户信息 if (操作成功){ // 提交事务 $User->commit() }else{ // 事务回滚 $User->rollback() }
IndexController.class.php:##
startTrans(); $result = M('feehistory')->add($data); $result1 = $result2 = true; if(!empty($result)){ $regdelData['level'] = '111'; $result1 = M('regdel')->add($regdelData); $regData['level'] = '101'; $result2 = M('reg')->where("registryCode='13693536752-SJB-HUAX-12345678'")->save($regData); } if(!empty($result) && !empty($result1) && !empty($result2) ){ M()->commit(); //$this->success('事物提交',); echo '事物提交'; }else{ M()->rollback(); //$this->error('事物回滚',); echo '事物回滚'; } } }
A brief discussion on the simple implementation of thinkphp5 instance
##
The above is the detailed content of ThinkPHP 3.2.2 How to implement transaction operations. For more information, please follow other related articles on the PHP Chinese website!