浏览代码

苹果支付

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

+ 1 - 5
application/api/controller/Pay.php

@@ -274,10 +274,6 @@ class Pay extends Controller
         if (!$order_type) $this->resultT('订单类型参数错误',0);
         $pay_money = input('pay_money');   //支付金额
         if (!$pay_money) $this->resultT('支付金额参数错误',0);
-        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->resultT("非法参数",0);
@@ -292,7 +288,7 @@ class Pay extends Controller
             $data = json_decode($html, true);
             $data['sandbox'] = '1';
         }
-        file_put_contents("validate_apple_pay_error.txt", $html . "\n" . json_encode($data) . "\n" . "\n", FILE_APPEND);
+        file_put_contents("validate_apple_pay_error.txt", $html . "\n" . '订单号'.$order_no . "\n".'类型'.$order_type . "\n", FILE_APPEND);
         // 判断是否购买成功
         if (intval($data['status']) === 0) {
             switch ($order_type){