Helper.php 442 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace UCore\Db;
  3. use Illuminate\Support\Facades\DB;
  4. class Helper
  5. {
  6. static public function check_tr()
  7. {
  8. $level = DB::transactionLevel();
  9. if($level === 0){
  10. // 没有开启事务
  11. throw new \LogicException("transaction level is 0");
  12. }
  13. if($level > 1){
  14. // 没有开启事务
  15. throw new \LogicException("transaction level > 1");
  16. }
  17. }
  18. }