| 123456789101112131415161718192021222324 |
- <?php
- namespace UCore\Db;
- use Illuminate\Support\Facades\DB;
- class Helper
- {
- static public function check_tr()
- {
- $level = DB::transactionLevel();
- if($level === 0){
- // 没有开启事务
- throw new \LogicException("transaction level is 0");
- }
- if($level > 1){
- // 没有开启事务
- throw new \LogicException("transaction level > 1");
- }
- }
- }
|