|
@@ -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){
|