浏览代码

苹果支付

mashouyi 2 年之前
父节点
当前提交
43e409fd70
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      application/api/controller/Pay.php

+ 4 - 0
application/api/controller/Pay.php

@@ -274,6 +274,10 @@ class Pay extends Controller
         if (!$order_type) $this->error('订单类型参数错误');
         $pay_money = input('pay_money');   //支付金额
         if (!$pay_money) $this->error('支付金额参数错误');
+        file_put_contents("validate_apple_pay_error.txt", $receipt_data . "\n", FILE_APPEND);
+        file_put_contents("validate_apple_pay_error.txt", $order_no . "\n", FILE_APPEND);
+        file_put_contents("validate_apple_pay_error.txt", $order_type . "\n", FILE_APPEND);
+        file_put_contents("validate_apple_pay_error.txt", $pay_money . "\n", FILE_APPEND);
         // 验证参数
         if (strlen($receipt_data) < 20) {
             $this->error("非法参数");