Browse Source

会员升级

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

+ 1 - 1
crmeb/services/WithdrawService.php

@@ -89,7 +89,7 @@ class WithdrawService
     public static function decode($businessBodyString)
     public static function decode($businessBodyString)
     {
     {
         //进行Aes解密
         //进行Aes解密
-        include_once './phpseclib/Crypt/AES.php';
+        include_once 'phpseclib/Crypt/AES.php';
         $aes = new \Crypt_AES(CRYPT_AES_MODE_ECB);
         $aes = new \Crypt_AES(CRYPT_AES_MODE_ECB);
         $aes->setKey(self::$aeskey);
         $aes->setKey(self::$aeskey);
         $data = $aes->decrypt(base64_decode($businessBodyString));
         $data = $aes->decrypt(base64_decode($businessBodyString));