本文的例子分享了php实现单笔转账到支付宝的具体代码,供大家参考。具体内容如下
1.第一,去蚂蚁金服签单转账到支付宝
官方api文档
2.所需的配置信息
1).应用appid
2).生成密钥
文档地址
根据文档步骤生成
在此上传应用程序公钥
3.下载官方sdk并将其集成到您自己的项目中
服务器SDK
官方例子
//实例化客户端AlipayClient AlipayClient=New DefaultAlipayClient(' https://openapi。Alipay.com/gateway.do', app _ ID,app _ private _ key,‘JSON’,字符集,支付宝_ public _ key,‘RSA 2’);//实例化特定API对应的请求类。类名对应于接口名。当前通话界面名称:支付宝。打开。公众。模板。消息。工业。修改alipaypenpublicategatemessageindustry modifierquest=New alipaypenpublicategatemessageindustry modifierquest();//SDK封装了公共参数,这里只需要传入业务参数。//这次只显示参数,不显示字符串转义。事实上,请逃避请求。setbizcontent(' { ' ' Primary _ industry _ name ' : ' IT技术/IT软件和服务 ',' ' Primary _ industry _ code ' : ' 10001/20102 ',' ' ' secondary _ industry _ code ' : ' 10001/20102 ',' ' ' secondary _ industry。alipaypenpublicategatemessageindustrmodifierrresponse响应=alipayClient.execute(请求);//如果调用成功,处理业务逻辑的效果if (response。issucess()){//.}如下所示
我的代码
?php/** *创建者适可而止*创建时间2018/4/8 */命名空间org Utilclass AlipayTransfer { private $ appId=' appId ';private $rsaPrivateKey='私钥;private $ alipayrsaPublicKey='支付宝公钥;private $payer_name='xx科技;私人$ AOP public function _ _ construct(){ $ g _支付宝=C('支付宝_配置');$ this-appId=$ g _支付宝[' appId '];//appid $ this-RSa privateKey=$ g _支付宝[' RSa private key '];//私钥$ this-alipayrspublickey=$ g _支付宝[' rspublic key '];//支付宝公钥//引入单笔转账软件开发工具包供应商(' Alipayaop .AOP SDK’);}公共函数init _ AOP _ config(){ $ this-AOP-GateWayURl=' https://open API。支付宝。com/GateWay。“做”;$ this-AOP-AppID=$ this-AppID;$ this-AOP-RSapprivateKey=$ this-RSapprivateKey;$ this-AOP-alipayrspublicky=$ this-alipayrspublicky;$ this-AOP-APiversion=' 1.0 ';$ this-AOP-SignType=' RSa 2 ';$ this-AOP-PostCharset=' UTF-8 ';$ this-AOP-format=' JSON ';} /** * 单笔转账接口* @ param $订单号订单号* @param $pay_no转账账号* @param $pay_name转账用户名* @ param $金额转账金额* @ param $备忘录备注*/公共函数转移($order_number,$pay_no,$pay_name,$金额,$memo) { //存入转账日志$ this-转账日志($ order _ number,$pay_no,$pay_name,$ amount);$ this-AOP=new AOP client();//配置参数$ this-init _ AOP _ config();//导入请求$ request=new alipayfuntranstoaccount transfer request();$request-setBizContent('{ '). ' out _ biz _ no ' : ' .$订单号.',' .//商户生成订单号 '收款人_类型: '支付宝_ LOGONID ',' .//收款方支付宝账号类型 '收款人_账户' : '。$pay_no.' ',' .//收款方账号 '金额' : ' '。$金额。',' .//总金额 ' payer _ show _ name ' : ' .$this-payer_name .',' .//付款方账户 '收款人真实姓名' : '。$pay_name .',' .//收款方姓名 '备注' : ' '。$备忘录.'' .//转账备注'}');$ result=$ this-AOP-execute($ request);$responseNode=str_replace('。' _ ',$ request-GetPimethodname())._ response ';$ result code=$ result-$ response节点-code;$ resultSubMsg=$ result-$ response node-sub _ msg;//修改转账日志$ this-edit _ transfer log($ order _ number,$resultCode,$ resultSubMsg);if(!空($结果代码)$结果代码==10000){ 0返回true} else { return false} } /** *存取日志*/私有函数transferLog($order_number,$pay_no,$pay_name,$ amount){ $ data[' order _ number ']=$ order _ number;$ data[' pay _ no ']=$ pay _ no;$ data[' pay _ name ']=$ pay _ name;$ data[' amount ']=$ amount;$ data[' create _ time ']=time();m(' AlipayTransferLog ')-add($ data);} /** * 修改日志*/私有函数edit_transferLog($order_number,$result_code,$ sub _ msg){ $ model=D(' alipaytransfer log ');$其中[' order _ number ']=$ order _ number;$ result=$ model-where($ where)-order(' create _ time desc ')-find();if($ result _ code==10000){ $ result[' status ']=1;$sub_msg="成功";} else { $ result[' status ']=2;} $ result[' memo ']=$ sub _ msg;$ result[' update _ time ']=time();m(' AlipayTransferLog ')-save($ result);} /** * 查单接口*/公共函数查询($ order _ number){ $ this-AOP=new AOP client();//配置参数$ this-init _ AOP _ config();$ request=new alipayfuntransorderqueryrequest();$request-setBizContent('{ '). ' out _ biz _ no ' : ' .$订单号.'' .'}');$ result=$ this-AOP-execute($ request);$responseNode=str_replace('。' _ ',$ request-GetPimethodname())._ response ';$ result code=$ result-$ response节点-code;if(!空($ result code)$ result code==10000){ $ RES _ arr[' code ']=' 00 ';$ RES _ arr[' data ']=$ result;} else { $ RES _ arr[' code ']='-1 ';}返回$ res _ arr}}?以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。