search

Home  >  Q&A  >  body text

thinkphp3.2.3 connects with the new version of Alipay

The effect picture is as follows:

The new version of Alipay signature verification is encapsulated and only needs to be configured and called.

public function pay(){
        //商户订单号,商户网站订单系统中唯一订单号,必填
        $out_trade_no = '27201'.date('YmdHis',time());
        //订单名称,必填
        $proName = trim($_POST['WIDsubject']);
        //付款金额,必填
        $total_amount = '0.01';//trim($_POST['WIDtotal_amount']);
        //商品描述,可空
        $body = '27201';//trim($_POST['WIDbody']);
        Vendor('Alipay.aop.AopClient');
        Vendor('Alipay.aop.request.AlipayTradePagePayRequest');
        //请求
        $c = new \AopClient();
        $config = C('alipay');
        $c->gatewayUrl = "https://openapi.alipay.com/gateway.do";
        $c->appId = $config['app_id'];
        $c->rsaPrivateKey = $config['merchant_private_key'];
        $c->format = "json";
        $c->charset= "UTF-8";
        $c->signType= "RSA2";
        $c->alipayrsaPublicKey = $config['alipay_public_key'];
        $request = new \AlipayTradePagePayRequest();
        $request->setReturnUrl($config['return_url']);
        $request->setNotifyUrl($config['notify_url']);
        $request->setBizContent("{" .
            "    \"product_code\":\"FAST_INSTANT_TRADE_PAY\"," .
            "    \"subject\":\"$proName\"," .
            "    \"out_trade_no\":\"$out_trade_no\"," .
            "    \"total_amount\":$total_amount," .
            "    \"body\":\"$body\"" .
            "  }");
        $result = $c->pageExecute ($request);
        $model = M('c_house_order');
        $data = array(
            'product_name'=>$proName,
            'order_num'=>$out_trade_no,
            'total_amount'=>$total_amount,
            'description'=>$body,
            'user_id'=>1,
            'add_time'=>NOW_TIME,
            'up_time'=>NOW_TIME
        );
        $model->add($data);
        //输出
        echo $result;
    }


For asynchronous notification, write the logic directly in your asynchronous notification method, use $_POST to receive the parameters passed from Alipay, and perform corresponding database insertion or update.


二当家的二当家的2700 days ago1518

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-09-01 10:08:07

    Not bad, not bad, not bad, not bad, not bad, not bad, not bad, not bad, not bad, not bad, not bad, not bad

    reply
    0
  • PHP中文网

    PHP中文网2017-09-01 09:13:48

    Well written. If you want to learn programming, come to PHP Chinese website

    reply
    0
  • Cancelreply