|
@@ -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("非法参数");
|