ソースを参照

调试滴滴支付

Robin 6 年 前
コミット
d495d4e4e5
1 ファイル変更3 行追加1 行削除
  1. 3 1
      normandcrm/service/common/pay/payplat/PayHandler.php

+ 3 - 1
normandcrm/service/common/pay/payplat/PayHandler.php

@@ -54,8 +54,10 @@ class PayHandler extends BasePayHandler
         $data['sdNotifyUrl']  = $this->notifyUrl;           //异步回调地址
 
         $data['secret'] = $this->Key;                       //签名的秘钥
-
+        file_put_contents('sting.txt',\GuzzleHttp\json_encode($data));
         $data['sign'] = PayUtils::makeSign($data);
+
+        file_put_contents('sign.txt',$data['sign']);
         $result = static::createHtml($data, $this->payUrl);
         return  $result;
     }