xieruidong vor 2 Jahren
Ursprung
Commit
4066fb85b8
1 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen
  1. 4 1
      application/service/WechatTransferSvc.php

+ 4 - 1
application/service/WechatTransferSvc.php

@@ -19,7 +19,10 @@ class WechatTransferSvc
     {
         $this->mchid=config('site.mch_id');
         $this->appid=config('site.sender_appid');
-        $this->serial_no=file_get_contents(self::filePath('serial_no'));
+        $serial_path=self::filePath('serial_no');
+        if(file_exists($serial_path)) {
+            $this->serial_no = file_get_contents($serial_path);
+        }
     }
 
     public static function client(){