Home Backend Development PHP Tutorial PHP WeChat payment example analysis_php example

PHP WeChat payment example analysis_php example

Aug 04, 2016 am 08:56 AM

This article shares PHP WeChat payment examples for everyone, including PHP WeChat payment source code, PHP WeChat refund source code, and PHP WeChat payment interface for your reference. The specific content is as follows

1.JSapi payment demo (click in WeChat client)

<&#63;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;
&#63;>

Copy after login

2. Native payment mode 1 demo (static link QR code scanned with WeChat)

<&#63;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();
 
&#63;>

Copy after login

3. Native payment mode 2 demo (dynamic link QR code scanned with WeChat)

 <&#63;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"];
 //商户自行增加处理流程
 //......
 }

&#63;>

Copy after login

4. Payment inquiry interface demo

<&#63;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>";
 } 
 }

 //商户自行增加处理流程
 //......
 
&#63;>

Copy after login

5. Statement interface demo

<&#63;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 class="brush:php;toolbar:false">');
 echo "【对账单详情】"."</br>";
 print_r($downloadBill->response);
 print_r('
'); } } ?>
Copy after login

6.Refund interface demo

<&#63;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>";
 }
 }
 
&#63;>

Copy after login

7. Refund query interface demo

<&#63;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>";
 }
 } 
&#63;>

Copy after login

WeChat payment source code download

The above is the entire content of this article. I hope it will be helpful to everyone’s study. I also hope that everyone will support Script Home.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1246
24
PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Apr 17, 2025 am 12:06 AM

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values ​​to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

How does PHP handle file uploads securely? How does PHP handle file uploads securely? Apr 10, 2025 am 09:37 AM

PHP handles file uploads through the $\_FILES variable. The methods to ensure security include: 1. Check upload errors, 2. Verify file type and size, 3. Prevent file overwriting, 4. Move files to a permanent storage location.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

How does PHP type hinting work, including scalar types, return types, union types, and nullable types? How does PHP type hinting work, including scalar types, return types, union types, and nullable types? Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP vs. Python: Understanding the Differences PHP vs. Python: Understanding the Differences Apr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

See all articles