search
HomeBackend DevelopmentPHP TutorialPHP and EasyWeChat: Practical Development of WeChat Mini Program Payment Function
PHP and EasyWeChat: Practical Development of WeChat Mini Program Payment FunctionJul 19, 2023 am 09:15 AM
Payment functioneasywechatDevelopment practice

PHP and EasyWeChat: Practical Development of WeChat Mini Program Payment Function

WeChat Payment is one of the most commonly used mobile payment methods, and WeChat Mini Program has become the choice of more and more enterprises and developers platform. Integrating payment functions into WeChat mini programs can bring more business opportunities and convenience to enterprises. This article will introduce how to use PHP and EasyWeChat to develop the payment function of WeChat mini program.

1. Preparation
Before starting development, we need to prepare the following materials:

  1. WeChat payment merchant number (mch_id)
  2. WeChat payment merchant secret Key
  3. App ID (appid) and App Secret (appsecret) of WeChat Pay
  4. A legal certificate file
    The above materials can be obtained by applying on the WeChat Pay Developer Platform.

2. Install EasyWeChat
EasyWeChat is a PHP-based WeChat development toolkit that can simplify the process of interacting with WeChat official accounts and mini programs. We can use Composer to install EasyWeChat and execute the following command:

composer require overtrue/wechat

3. Configure EasyWeChat
After the installation is complete, create a new file config.php in your project and configure EasyWeChat according to the following example:

<?php

return [
    'payment' => [
        'sandbox'    => false,
        'app_id'     => 'YOUR_APPID',
        'mch_id'     => 'YOUR_MCHID',
        'key'        => 'YOUR_KEY',
        'cert_path'  => 'CERT_PATH',
        'key_path'   => 'KEY_PATH',
    ],
];

Replace YOUR_APPID, YOUR_MCHID, YOUR_KEY with your actual values. CERT_PATH and KEY_PATH are the paths to your certificate files.

4. Implement the payment function
Using EasyWeChat to help us encapsulate the WeChat applet payment class, we can easily implement the payment function. This can be achieved by following the steps below.

  1. Receive payment request
    In your applet, after the user clicks the payment button, a payment request will be sent to the server. You need to write an interface for receiving payment requests and configure the URL of this interface to the background of the mini program.
  2. Processing payment requests
    After receiving the payment request, we can use the following code to process the payment request and return a prepayment information to the mini program for the mini program to call the WeChat payment interface to initiate payment :

    <?php
    require 'vendor/autoload.php';
    $config = require 'config.php';
    
    use EasyWeChatFactory;
    
    $options = [
     // ...
    ];
    
    $app = Factory::miniProgram($options);
    
    $response = $app->payment->prepare([
     'openid' => 'USER_OPENID',
     'out_trade_no' => 'YOUR_ORDER_ID',
     'total_fee' => 'ORDER_TOTAL_FEE',
     'body' => 'PAYMENT_DESCRIPTION',
     'spbill_create_ip' => $_SERVER['REMOTE_ADDR'],
     // ... 可选参数
    ]);
    
    if ($response->return_code === 'SUCCESS' && $response->result_code === 'SUCCESS') {
     // 返回预支付信息给小程序
     echo json_encode($app->payment->configForPayment($response->prepay_id));
    }

    Replace USER_OPENID, YOUR_ORDER_ID, ORDER_TOTAL_FEE and PAYMENT_DESCRIPTION with actual values.

  3. Processing payment callbacks
    After the user completes the payment, WeChat will call back to our server asynchronously. We need to write an interface to handle the callback of successful payment and perform corresponding business processing. . Here is the sample code:

    <?php
    use EasyWeChatPaymentNotify;
    
    $options = [
     // ...
    ];
    
    $app = Factory::miniProgram($options);
    
    $payment = $app->payment;
    $notice = $payment->notify();
    
    $notice->setAttr('sub_appid', 'SUB_APPID');
    
    $notice->handle(function ($notify, $successful) {
     // 处理支付成功的业务逻辑
     $outTradeNo = $notify->out_trade_no;
     // ...
    
     return true; // 返回 true 表示已处理完成,不会再异步通知
    });
    
    $response = $notice->reply();
    
    $response->send();

    Replace SUB_APPID with the App ID of your applet.

So far, we have completed the development of the WeChat mini program payment function. Through the packaging of EasyWeChat, we can easily implement the payment function, which greatly simplifies the development process. I hope this article will be helpful to you who are developing the payment function of WeChat mini program.

The above is the detailed content of PHP and EasyWeChat: Practical Development of WeChat Mini Program Payment Function. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
教你用EasyWeChat和PHP构建微信小程序的投票功能教你用EasyWeChat和PHP构建微信小程序的投票功能Jul 18, 2023 am 09:53 AM

教你用EasyWeChat和PHP构建微信小程序的投票功能引言:随着微信小程序的流行,越来越多的企业开始尝试开发自己的小程序来与用户进行交互。其中,投票功能是一个非常常见且有趣的应用场景。本文将教大家如何使用EasyWeChat和PHP来构建微信小程序的投票功能,并提供相应的代码示例。一、EasyWeChat简介EasyWeChat是一个基于PHP的微信开发

EasyWeChat和PHP开发微信小程序的社区功能实现技巧EasyWeChat和PHP开发微信小程序的社区功能实现技巧Jul 18, 2023 pm 09:39 PM

EasyWeChat和PHP开发微信小程序的社区功能实现技巧随着微信小程序的不断发展,越来越多的企业和开发者开始关注和使用微信小程序。微信小程序提供了丰富的开发接口和功能,使得开发者能够轻松构建出各种各样的应用程序。其中,社区功能是微信小程序中非常常见且重要的一种功能,它能够让用户进行交流、分享和互动,提升用户体验和粘性。本文将介绍如何使用EasyWeCha

使用EasyWeChat和PHP开发微信小程序的电子商务功能使用EasyWeChat和PHP开发微信小程序的电子商务功能Jul 19, 2023 am 09:31 AM

使用EasyWeChat和PHP开发微信小程序的电子商务功能近年来,随着微信小程序的快速发展,越来越多的企业开始将其作为电子商务的重要渠道。为了实现微信小程序的电子商务功能,我们可以使用EasyWeChat和PHP开发工具来搭建一个完整的电商平台。本文将介绍如何使用EasyWeChat和PHP来开发微信小程序的电子商务功能,并提供一些代码示例供参考。搭建环境

EasyWeChat和PHP开发微信小程序的文件上传和下载功能实现指南EasyWeChat和PHP开发微信小程序的文件上传和下载功能实现指南Jul 18, 2023 pm 04:21 PM

EasyWeChat(简称ECW)是一个基于PHP的微信开发工具包,它为开发者提供了一系列方便的API接口,用于开发微信公众号、微信小程序等应用。在本文中,我们将介绍如何使用EasyWeChat和PHP开发微信小程序的文件上传和下载功能。首先,我们需要在EasyWeChat中配置小程序的相关信息,并获取到小程序的appID和appSecret。具体配置方法可

EasyWeChat和PHP开发微信小程序的微信支付功能实现指南EasyWeChat和PHP开发微信小程序的微信支付功能实现指南Jul 18, 2023 pm 03:12 PM

EasyWeChat和PHP开发微信小程序的微信支付功能实现指南在当前移动互联网时代,微信支付已经成为了一种非常流行的支付方式。对于开发微信小程序的开发者来说,实现微信支付功能是非常重要的一部分,通过微信支付可以为小程序带来更好的商业价值。本指南将介绍如何使用EasyWeChat和PHP来开发微信小程序的微信支付功能。一、了解EasyWeChatEasyWe

uniapp中如何使用支付宝支付功能uniapp中如何使用支付宝支付功能Jul 04, 2023 pm 10:30 PM

uniapp中如何使用支付宝支付功能支付宝是中国最大的移动支付平台之一,为了方便开发者在uniapp中使用支付宝支付功能,支付宝提供了一套方便的API接口。本文将介绍如何在uniapp中使用支付宝支付功能,并提供相应的代码示例。一、申请支付宝开放平台账号和密钥首先,你需要在支付宝开放平台上申请一个开发者账号,并获取到对应的AppID和密钥。具体步骤如下:1.

UniApp实现支付功能与支付接口对接的设计与开发指南UniApp实现支付功能与支付接口对接的设计与开发指南Jul 04, 2023 pm 03:22 PM

UniApp实现支付功能与支付接口对接的设计与开发指南一、引言随着移动支付的快速发展,支付功能已经成为了移动应用开发中必备的功能之一。UniApp是一个跨平台的应用开发框架,支持一次编写,多平台发布,可以高效地实现支付功能。本文将介绍如何在UniApp中实现支付功能,并与支付接口进行对接。二、支付功能的设计与开发1.准备工作在开始之前,请确保已经完成如下准备

使用EasyWeChat和PHP开发微信小程序的图片上传功能使用EasyWeChat和PHP开发微信小程序的图片上传功能Jul 19, 2023 pm 06:33 PM

使用EasyWeChat和PHP开发微信小程序的图片上传功能随着微信小程序的兴起,越来越多的开发者开始关注微信小程序的开发。其中,图片上传是微信小程序中非常常见且重要的功能之一。本文将介绍如何使用EasyWeChat和PHP来开发微信小程序的图片上传功能。首先,我们需要了解EasyWeChat和PHP分别是什么。EasyWeChat是一个基于PHP的微信公众

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version