The content of this article is about how to implement Alipay's APP payment function (code) in PHP. The content is very detailed. Friends in need can refer to it. I hope it can help everyone.
Alipay web payment
1. Add an application to the Alipay open platform, obtain the appid, and sign a contract.
2. Set the Alipay open product platform as follows:
3. Configure the application public key of Alipay. (According to Alipay’s documentation)
4. Download the official sdk demo on the open platform.
5. Code:
//支付宝 include_once VENDOR_PATH . 'Alipay/aop/AopClient.php'; include_once VENDOR_PATH . 'Alipay/aop/request/AlipayTradeAppPayRequest.php'; $notify_url='https://www.www.com/app/pay/AlipayStep3Notify'; $config = array( 'appid' =>$this->appid,// 'rsaPrivateKey' =>$this->rsaPrivateKey,//开发者私钥私钥 'alipayrsaPublicKey'=>$this->alipayrsaPublicKey,//支付宝公钥 'charset'=>strtolower('utf-8'),//编码 'notify_url' =>$notify_url,//回调地址(支付宝支付成功后回调修改订单状态的地址) 'payment_type' =>1,//(固定值) 'seller_id' =>'',//收款商家账号 'charset' => 'utf-8',//编码 'sign_type' => 'RSA2',//签名方式 'timestamp' =>date("Y-m-d H:i:s"), 'version' =>"1.0",//固定值 'url' => 'https://openapi.alipay.com/gateway.do',//固定值 'method' => 'alipay.trade.app.pay',//固定值 ); $aop = new \AopClient(); $aop->gatewayUrl = "https://openapi.alipay.com/gateway.do"; $aop->appId = $config['appid']; $aop->rsaPrivateKey = $config['rsaPrivateKey']; $aop->format = "json"; $aop->charset = "UTF-8"; $aop->signType = "RSA2"; $aop->alipayrsaPublicKey=$config['alipayrsaPublicKey']; //实例化具体API对应的request类,类名称和接口名称对应,当前调用接口名称:alipay.trade.app.pay $request = new \AlipayTradeAppPayRequest(); //SDK已经封装掉了公共参数,这里只需要传入业务参数 $bizcontent = json_encode([ 'body'=>'**', 'subject'=>$subject, 'out_trade_no'=> $order_sn,//此订单号为商户唯一订单号 'total_amount'=>$totalprice,//保留两位小数 'product_code'=>'QUICK_MSECURITY_PAY' ]); $request->setNotifyUrl($config['notify_url']); $request->setBizContent($bizcontent); //这里和普通的接口调用不同,使用的是sdkExecute $response = $aop->sdkExecute($request); //htmlspecialchars是为了输出到页面时防止被浏览器将关键参数html转义,实际打印到日志以及http传输不会有这个问题 $datas=$response;//就是orderString 可以直接给客户端请求,无需再做处理。 $this->arr['code']=0; $this->arr['msg']=$order_sn; $this->arr['info']=$datas; echo json_encode($this->arr);exit;
6. Payment callback notify_url.
include_once VENDOR_PATH . 'Alipay/aop/AopClient.php'; $aop = new \AopClient(); $config['alipayrsaPublicKey']=$this->$alipayrsaPublicKey;//公钥 $aop->alipayrsaPublicKey = $config['alipayrsaPublicKey']; //此处验签方式必须与下单时的签名方式一致 $flag = $aop->rsaCheckV1($_POST, NULL, "RSA2"); //验签通过后再实现业务逻辑,比如修改订单表中的支付状态。 /** ①验签通过后核实如下参数out_trade_no、total_amount、seller_id ②修改订单表 **/ $out_trade_no = I('post.out_trade_no'); //商户订单号
Then modify the corresponding data in the database.
7. Order query interface:
include_once VENDOR_PATH . 'Alipay/aop/SignData.php'; include_once VENDOR_PATH . 'Alipay/aop/AopClient.php'; include_once VENDOR_PATH . 'Alipay/aop/request/AlipayTradeQueryRequest.php'; $config = array( 'appid' =>$this->appid,// 'rsaPrivateKey' =>$this->rsaPrivateKey,//开发者私钥私钥 'alipayrsaPublicKey'=>$this->alipayrsaPublicKey,//支付宝公钥 'charset'=>strtolower('utf-8'),//编码 'notify_url' =>'',//回调地址(支付宝支付成功后回调修改订单状态的地址) 'payment_type' =>1,//(固定值) 'seller_id' =>'',//收款商家账号 'charset' => 'utf-8',//编码 'sign_type' => 'RSA',//签名方式 'timestamp' =>date("Y-m-d H:i:s"), 'version' =>"1.0",//固定值 'url' => 'https://openapi.alipay.com/gateway.do',//固定值 'method' => 'alipay.trade.query',//固定值 ); $aop = new \AopClient(); $aop->gatewayUrl = "https://openapi.alipay.com/gateway.do"; $aop->appId = $config['appid']; $aop->rsaPrivateKey = $config['rsaPrivateKey']; $aop->format = "json"; $aop->charset = "UTF-8"; $aop->signType = "RSA2"; $aop->method = $config['method']; $aop->apiVersion = '1.0'; $aop->alipayrsaPublicKey=$config['alipayrsaPublicKey']; //实例化具体API对应的request类,类名称和接口名称对应,当前调用接口名称:alipay.trade.query $request = new \AlipayTradeQueryRequest(); $bizcontent = json_encode([ 'out_trade_no'=>$order_sn, 'trade_no'=>'' ]); $request->setBizContent($bizcontent); $response = $aop->execute($request); $responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response"; $resultCode = $response->$responseNode->code; if(!empty($resultCode)&&$resultCode == 10000){ $this->arr['code']=0; $this->arr['msg']='success'; echo json_encode($this->arr);exit; } else { $this->arr['code']=100001; $this->arr['msg']='未查询到订单信息'; echo json_encode($this->arr);exit; }
Related recommendations:
php Alipay interface usage analysis, php Alipay usage
##
The above is the detailed content of How to implement Alipay's APP payment function in php (code). For more information, please follow other related articles on the PHP Chinese website!

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

TooptimizePHPapplicationsforperformance,usecaching,databaseoptimization,opcodecaching,andserverconfiguration.1)ImplementcachingwithAPCutoreducedatafetchtimes.2)Optimizedatabasesbyindexing,balancingreadandwriteoperations.3)EnableOPcachetoavoidrecompil

DependencyinjectioninPHPisadesignpatternthatenhancesflexibility,testability,andmaintainabilitybyprovidingexternaldependenciestoclasses.Itallowsforloosecoupling,easiertestingthroughmocking,andmodulardesign,butrequirescarefulstructuringtoavoidover-inje

PHP performance optimization can be achieved through the following steps: 1) use require_once or include_once on the top of the script to reduce the number of file loads; 2) use preprocessing statements and batch processing to reduce the number of database queries; 3) configure OPcache for opcode cache; 4) enable and configure PHP-FPM optimization process management; 5) use CDN to distribute static resources; 6) use Xdebug or Blackfire for code performance analysis; 7) select efficient data structures such as arrays; 8) write modular code for optimization execution.

OpcodecachingsignificantlyimprovesPHPperformancebycachingcompiledcode,reducingserverloadandresponsetimes.1)ItstorescompiledPHPcodeinmemory,bypassingparsingandcompiling.2)UseOPcachebysettingparametersinphp.ini,likememoryconsumptionandscriptlimits.3)Ad


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Notepad++7.3.1
Easy-to-use and free code editor
