欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP微信支付实例解析

程序员文章站 2024-04-02 17:16:04
本文为大家分享了php微信支付实例,包括php微信支付源码,php微信退款源码,php微信支付接口,供大家参考,具体内容如下 1.jsapi支付demo(在微信客户端中点...

本文为大家分享了php微信支付实例,包括php微信支付源码,php微信退款源码,php微信支付接口,供大家参考,具体内容如下

1.jsapi支付demo(在微信客户端中点击)

<?php
/**
 * js_api支付demo
 * ====================================================
 * 在微信浏览器里面打开h5网页中执行js调起支付。接口输入输出数据格式为json。
 * 成功调起支付需要三个步骤:
 * 步骤1:网页授权获取用户openid
 * 步骤2:使用统一支付接口,获取prepay_id
 * 步骤3:使用jsapi调起支付
*/
 include_once("../wxpaypubhelper/wxpaypubhelper.php");
 
 //使用jsapi接口
 $jsapi = new jsapi_pub();

 //=========步骤1:网页授权获取用户openid============
 //通过code获得openid
 if (!isset($_get['code']))
 {
 //触发微信返回code码
 $url = $jsapi->createoauthurlforcode(wxpayconf_pub::js_api_call_url);
 header("location: $url"); 
 }else
 {
 //获取code码,以获取openid
  $code = $_get['code'];
 $jsapi->setcode($code);
 $openid = $jsapi->getopenid();
 }
 
 //=========步骤2:使用统一支付接口,获取prepay_id============
 //使用统一支付接口
 $unifiedorder = new unifiedorder_pub();
 
 //设置统一支付接口参数
 //设置必填参数
 //appid已填,商户无需重复填写
 //mch_id已填,商户无需重复填写
 //noncestr已填,商户无需重复填写
 //spbill_create_ip已填,商户无需重复填写
 //sign已填,商户无需重复填写
 $unifiedorder->setparameter("openid","$openid");//商品描述
 $unifiedorder->setparameter("body","贡献一分钱");//商品描述
 //自定义订单号,此处仅作举例
 $timestamp = time();
 $out_trade_no = wxpayconf_pub::appid."$timestamp";
 $unifiedorder->setparameter("out_trade_no","$out_trade_no");//商户订单号 
 $unifiedorder->setparameter("total_fee","1");//总金额
 $unifiedorder->setparameter("notify_url",wxpayconf_pub::notify_url);//通知地址 
 $unifiedorder->setparameter("trade_type","jsapi");//交易类型
 //非必填参数,商户可根据实际情况选填
 //$unifiedorder->setparameter("sub_mch_id","xxxx");//子商户号 
 //$unifiedorder->setparameter("device_info","xxxx");//设备号 
 //$unifiedorder->setparameter("attach","xxxx");//附加数据 
 //$unifiedorder->setparameter("time_start","xxxx");//交易起始时间
 //$unifiedorder->setparameter("time_expire","xxxx");//交易结束时间 
 //$unifiedorder->setparameter("goods_tag","xxxx");//商品标记 
 //$unifiedorder->setparameter("openid","xxxx");//用户标识
 //$unifiedorder->setparameter("product_id","xxxx");//商品id

 $prepay_id = $unifiedorder->getprepayid();
 //=========步骤3:使用jsapi调起支付============
 $jsapi->setprepayid($prepay_id);

 $jsapiparameters = $jsapi->getparameters();
 //echo $jsapiparameters;
?>

2.native支付模式一demo(用微信扫的静态链接二维码)

<?php
/**
 * native(原生)支付模式一demo
 * ====================================================
 * 模式一:商户按固定格式生成链接二维码,用户扫码后调微信
 * 会将productid和用户openid发送到商户设置的链接上,商户收到
 * 请求生成订单,调用统一支付接口下单提交到微信,微信会返回
 * 给商户prepayid。
 * 本例程对应的二维码由native_call_qrcode.php生成;
 * 本例程对应的响应服务为native_call.php;
 * 需要两者配合使用。
*/
 include_once("../wxpaypubhelper/wxpaypubhelper.php");

 //设置静态链接
 $nativelink = new nativelink_pub(); 
 
 //设置静态链接参数
 //设置必填参数
 //appid已填,商户无需重复填写
 //mch_id已填,商户无需重复填写
 //noncestr已填,商户无需重复填写
 //time_stamp已填,商户无需重复填写
 //sign已填,商户无需重复填写
 $product_id = wxpayconf_pub::appid."static";//自定义商品id
 $nativelink->setparameter("product_id","$product_id");//商品id
 //获取链接
 $product_url = $nativelink->geturl();

 //使用短链接转换接口
 $shorturl = new shorturl_pub();
 //设置必填参数
 //appid已填,商户无需重复填写
 //mch_id已填,商户无需重复填写
 //noncestr已填,商户无需重复填写
 //sign已填,商户无需重复填写
 $shorturl->setparameter("long_url","$product_url");//url链接
 //获取短链接
 $codeurl = $shorturl->getshorturl();
 
?>

3.native支付模式二demo(用微信扫的动态链接二维码)

 <?php
/**
 * native(原生)支付-模式二-demo
 * ====================================================
 * 商户生成订单,先调用统一支付接口获取到code_url,
 * 此url直接生成二维码,用户扫码后调起支付。
 * 
*/
 include_once("../wxpaypubhelper/wxpaypubhelper.php");

 //使用统一支付接口
 $unifiedorder = new unifiedorder_pub();
 
 //设置统一支付接口参数
 //设置必填参数
 //appid已填,商户无需重复填写
 //mch_id已填,商户无需重复填写
 //noncestr已填,商户无需重复填写
 //spbill_create_ip已填,商户无需重复填写
 //sign已填,商户无需重复填写
 $unifiedorder->setparameter("body","贡献一分钱");//商品描述
 //自定义订单号,此处仅作举例
 $timestamp = time();
 $out_trade_no = wxpayconf_pub::appid."$timestamp";
 $unifiedorder->setparameter("out_trade_no","$out_trade_no");//商户订单号 
 $unifiedorder->setparameter("total_fee","1");//总金额
 $unifiedorder->setparameter("notify_url",wxpayconf_pub::notify_url);//通知地址 
 $unifiedorder->setparameter("trade_type","native");//交易类型
 //非必填参数,商户可根据实际情况选填
 //$unifiedorder->setparameter("sub_mch_id","xxxx");//子商户号 
 //$unifiedorder->setparameter("device_info","xxxx");//设备号 
 //$unifiedorder->setparameter("attach","xxxx");//附加数据 
 //$unifiedorder->setparameter("time_start","xxxx");//交易起始时间
 //$unifiedorder->setparameter("time_expire","xxxx");//交易结束时间 
 //$unifiedorder->setparameter("goods_tag","xxxx");//商品标记 
 //$unifiedorder->setparameter("openid","xxxx");//用户标识
 //$unifiedorder->setparameter("product_id","xxxx");//商品id
 
 //获取统一支付接口结果
 $unifiedorderresult = $unifiedorder->getresult();
 
 //商户根据实际情况设置相应的处理流程
 if ($unifiedorderresult["return_code"] == "fail") 
 {
 //商户自行增加处理流程
 echo "通信出错:".$unifiedorderresult['return_msg']."<br>";
 }
 elseif($unifiedorderresult["result_code"] == "fail")
 {
 //商户自行增加处理流程
 echo "错误代码:".$unifiedorderresult['err_code']."<br>";
 echo "错误代码描述:".$unifiedorderresult['err_code_des']."<br>";
 }
 elseif($unifiedorderresult["code_url"] != null)
 {
 //从统一支付接口获取到code_url
 $code_url = $unifiedorderresult["code_url"];
 //商户自行增加处理流程
 //......
 }

?>

4.支付查询接口demo

<?php
/**
 * 订单查询-demo
 * ====================================================
 * 该接口提供所有微信支付订单的查询。
 * 当支付通知处理异常或丢失的情况,商户可以通过该接口查询订单支付状态。
 * 
*/
 include_once("../wxpaypubhelper/wxpaypubhelper.php");
 
 //退款的订单号
 if (!isset($_post["out_trade_no"]))
 {
 $out_trade_no = " ";
 }else{
  $out_trade_no = $_post["out_trade_no"];

 //使用订单查询接口
 $orderquery = new orderquery_pub();
 //设置必填参数
 //appid已填,商户无需重复填写
 //mch_id已填,商户无需重复填写
 //noncestr已填,商户无需重复填写
 //sign已填,商户无需重复填写
 $orderquery->setparameter("out_trade_no","$out_trade_no");//商户订单号 
 //非必填参数,商户可根据实际情况选填
 //$orderquery->setparameter("sub_mch_id","xxxx");//子商户号 
 //$orderquery->setparameter("transaction_id","xxxx");//微信订单号
 
 //获取订单查询结果
 $orderqueryresult = $orderquery->getresult();
 
 //商户根据实际情况设置相应的处理流程,此处仅作举例
 if ($orderqueryresult["return_code"] == "fail") {
 echo "通信出错:".$orderqueryresult['return_msg']."<br>";
 }
 elseif($orderqueryresult["result_code"] == "fail"){
 echo "错误代码:".$orderqueryresult['err_code']."<br>";
 echo "错误代码描述:".$orderqueryresult['err_code_des']."<br>";
 }
 else{
 echo "交易状态:".$orderqueryresult['trade_state']."<br>";
 echo "设备号:".$orderqueryresult['device_info']."<br>";
 echo "用户标识:".$orderqueryresult['openid']."<br>";
 echo "是否关注公众账号:".$orderqueryresult['is_subscribe']."<br>";
 echo "交易类型:".$orderqueryresult['trade_type']."<br>";
 echo "付款银行:".$orderqueryresult['bank_type']."<br>";
 echo "总金额:".$orderqueryresult['total_fee']."<br>";
 echo "现金券金额:".$orderqueryresult['coupon_fee']."<br>";
 echo "货币种类:".$orderqueryresult['fee_type']."<br>";
 echo "微信支付订单号:".$orderqueryresult['transaction_id']."<br>";
 echo "商户订单号:".$orderqueryresult['out_trade_no']."<br>";
 echo "商家数据包:".$orderqueryresult['attach']."<br>";
 echo "支付完成时间:".$orderqueryresult['time_end']."<br>";
 } 
 }

 //商户自行增加处理流程
 //......
 
?>

5.对账单接口demo

<?php
/**
 * 对账单接口demo
 * ====================================================
 * 商户可以通过该接口下载历史交易清单。
*/
 include_once("../wxpaypubhelper/wxpaypubhelper.php");

 //对账单日期
 if (!isset($_post["bill_date"])){
 $bill_date = "20140814";
 }
 else{
  $bill_date = $_post["bill_date"];
 
 //使用对账单接口
 $downloadbill = new downloadbill_pub();
 //设置对账单接口参数
 //设置必填参数
 //appid已填,商户无需重复填写
 //mch_id已填,商户无需重复填写
 //noncestr已填,商户无需重复填写
 //sign已填,商户无需重复填写
 $downloadbill->setparameter("bill_date","$bill_date");//对账单日期 
 $downloadbill->setparameter("bill_type","all");//账单类型 
 //非必填参数,商户可根据实际情况选填
 //$downloadbill->setparameter("device_info","xxxx");//设备号 
 
 //对账单接口结果
 $downloadbillresult = $downloadbill->getresult();
 echo $downloadbillresult['return_code'];
 
 if ($downloadbillresult['return_code'] == "fail") {
 echo "通信出错:".$downloadbillresult['return_msg'];
 }else{
 print_r('<pre>');
 echo "【对账单详情】"."</br>";
 print_r($downloadbill->response);
 print_r('</pre>');
 }
 }
 
?>

6.退款接口demo

<?php
/**
 * 退款申请接口-demo
 * ====================================================
 * 注意:同一笔单的部分退款需要设置相同的订单号和不同的
 * out_refund_no。一笔退款失败后重新提交,要采用原来的
 * out_refund_no。总退款金额不能超过用户实际支付金额(现
 * 金券金额不能退款)。
*/

 include_once("../wxpaypubhelper/wxpaypubhelper.php");

 //输入需退款的订单号
 if (!isset($_post["out_trade_no"]) || !isset($_post["refund_fee"]))
 {
 $out_trade_no = " ";
 $refund_fee = "1";
 }else{
  $out_trade_no = $_post["out_trade_no"];
  $refund_fee = $_post["refund_fee"];
 //商户退款单号,商户自定义,此处仅作举例
 $out_refund_no = "$out_trade_no"."$time_stamp";
 //总金额需与订单号out_trade_no对应,demo中的所有订单的总金额为1分
 $total_fee = "1";
 
 //使用退款接口
 $refund = new refund_pub();
 //设置必填参数
 //appid已填,商户无需重复填写
 //mch_id已填,商户无需重复填写
 //noncestr已填,商户无需重复填写
 //sign已填,商户无需重复填写
 $refund->setparameter("out_trade_no","$out_trade_no");//商户订单号
 $refund->setparameter("out_refund_no","$out_refund_no");//商户退款单号
 $refund->setparameter("total_fee","$total_fee");//总金额
 $refund->setparameter("refund_fee","$refund_fee");//退款金额
 $refund->setparameter("op_user_id",wxpayconf_pub::mchid);//操作员
 //非必填参数,商户可根据实际情况选填
 //$refund->setparameter("sub_mch_id","xxxx");//子商户号 
 //$refund->setparameter("device_info","xxxx");//设备号 
 //$refund->setparameter("transaction_id","xxxx");//微信订单号
 
 //调用结果
 $refundresult = $refund->getresult();
 
 //商户根据实际情况设置相应的处理流程,此处仅作举例
 if ($refundresult["return_code"] == "fail") {
 echo "通信出错:".$refundresult['return_msg']."<br>";
 }
 else{
 echo "业务结果:".$refundresult['result_code']."<br>";
 echo "错误代码:".$refundresult['err_code']."<br>";
 echo "错误代码描述:".$refundresult['err_code_des']."<br>";
 echo "公众账号id:".$refundresult['appid']."<br>";
 echo "商户号:".$refundresult['mch_id']."<br>";
 echo "子商户号:".$refundresult['sub_mch_id']."<br>";
 echo "设备号:".$refundresult['device_info']."<br>";
 echo "签名:".$refundresult['sign']."<br>";
 echo "微信订单号:".$refundresult['transaction_id']."<br>";
 echo "商户订单号:".$refundresult['out_trade_no']."<br>";
 echo "商户退款单号:".$refundresult['out_refund_no']."<br>";
 echo "微信退款单号:".$refundresult['refund_idrefund_id']."<br>";
 echo "退款渠道:".$refundresult['refund_channel']."<br>";
 echo "退款金额:".$refundresult['refund_fee']."<br>";
 echo "现金券退款金额:".$refundresult['coupon_refund_fee']."<br>";
 }
 }
 
?>

7.退款查询接口demo

<?php
/**
 * 退款申请接口-demo
 * ====================================================
 * 
 * 
*/
 include_once("../wxpaypubhelper/wxpaypubhelper.php");

 //要查询的订单号
 if (!isset($_post["out_trade_no"]))
 {
 $out_trade_no = " ";
 }else{
  $out_trade_no = $_post["out_trade_no"];
 
 //使用退款查询接口
 $refundquery = new refundquery_pub();
 //设置必填参数
 //appid已填,商户无需重复填写
 //mch_id已填,商户无需重复填写
 //noncestr已填,商户无需重复填写
 //sign已填,商户无需重复填写
 $refundquery->setparameter("out_trade_no","$out_trade_no");//商户订单号
 // $refundquery->setparameter("out_refund_no","xxxx");//商户退款单号
 // $refundquery->setparameter("refund_id","xxxx");//微信退款单号
 // $refundquery->setparameter("transaction_id","xxxx");//微信退款单号
 //非必填参数,商户可根据实际情况选填
 //$refundquery->setparameter("sub_mch_id","xxxx");//子商户号 
 //$refundquery->setparameter("device_info","xxxx");//设备号 
 
 //退款查询接口结果
 $refundqueryresult = $refundquery->getresult();
 
 //商户根据实际情况设置相应的处理流程,此处仅作举例
 if ($refundqueryresult["return_code"] == "fail") {
 echo "通信出错:".$refundqueryresult['return_msg']."<br>";
 }
 else{
 echo "业务结果:".$refundqueryresult['result_code']."<br>";
 echo "错误代码:".$refundqueryresult['err_code']."<br>";
 echo "错误代码描述:".$refundqueryresult['err_code_des']."<br>";
 echo "公众账号id:".$refundqueryresult['appid']."<br>";
 echo "商户号:".$refundqueryresult['mch_id']."<br>";
 echo "子商户号:".$refundqueryresult['sub_mch_id']."<br>";
 echo "设备号:".$refundqueryresult['device_info']."<br>";
 echo "签名:".$refundqueryresult['sign']."<br>";
 echo "微信订单号:".$refundqueryresult['transaction_id']."<br>";
 echo "商户订单号:".$refundqueryresult['out_trade_no']."<br>";
 echo "退款笔数:".$refundqueryresult['refund_count']."<br>";
 echo "商户退款单号:".$refundqueryresult['out_refund_no']."<br>";
 echo "微信退款单号:".$refundqueryresult['refund_idrefund_id']."<br>";
 echo "退款渠道:".$refundqueryresult['refund_channel']."<br>";
 echo "退款金额:".$refundqueryresult['refund_fee']."<br>";
 echo "现金券退款金额:".$refundqueryresult['coupon_refund_fee']."<br>";
 echo "退款状态:".$refundqueryresult['refund_status']."<br>";
 }
 } 
?>

微信支付源码下载

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。