Browse Source

会员升级

Kirin 1 year ago
parent
commit
c1e97af8e0
1 changed files with 1 additions and 2 deletions
  1. 1 2
      crmeb/services/WithdrawService.php

+ 1 - 2
crmeb/services/WithdrawService.php

@@ -83,7 +83,7 @@ class WithdrawService
         $data = ['token' => self::$token, 'data' => $data];
         var_dump($data);
         var_dump($url);
-        return json_decode(self::do_request(self::$url . $url, $data, ['content-type:application/json'], true, true), true);
+        return json_decode(self::do_request(self::$url . $url, $data, ['content-type:application/json'], true), true);
     }
 
 
@@ -109,7 +109,6 @@ class WithdrawService
             curl_setopt($curl, CURLOPT_HEADER, 0);
         }
         $result = curl_exec($curl);
-        var_dump($result);
         if (curl_errno($curl)) {
             return json_encode(['status' => curl_errno($curl), 'msg' => '请求失败']);
         }