Home Backend Development PHP Tutorial WeChat Pay——Scan QR code to pay

WeChat Pay——Scan QR code to pay

Aug 08, 2016 am 09:25 AM
gt input native nbsp php

Personally, I think scanning code payment is much smoother in terms of development and use than Jsapi payment. When you scan the QR code to pay, you don’t have to worry about accessing via PC, mobile browser or WeChat client. Just generate a QR code and scan it to pay.

For some configuration and code SDK and errors in the SDK, please refer to the previous article WeChat Pay Articles

WeChat Payment - Detailed explanation of official account payment code


Friendly reminder that the following content is very simple - -# If you have run through Jsapi payment, then there is nothing special about scanning the QR code to pay.

The file for scanning the QR code to initiate payment is in the native.php file in the example SDK.

There are two payment methods for scan code payment. Before using scan code payment, you must configure the specific configuration of payment callback URL. Reference

WeChat developer documentation http://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=6_3

Introduction to two payment methods

Mode 1: http://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=6_4

Mode 2: http://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=6_5


In fact, mode 2 does not need to set a callback URL. However, once you modify the payment configuration and use scan code payment, you must check Native payment. At this time, the callback URL is required.

But I only want to use mode 2. There is no callback URL in mode 2, so I have to randomly write a URL that may be used in mode 1 in the future.

Code analysis:

Scan code payment mode 1


$notify = new NativePay();
$url1 = $notify->GetPrePayUrl("123456789");
Copy after login
Mainly look at the scan code payment mode 2



$input = new WxPayUnifiedOrder();
$input->SetBody("test");
$input->SetAttach("test");
$input->SetOut_trade_no(WxPayConfig::MCHID.date("YmdHis"));
$input->SetTotal_fee("1");
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600));
$input->SetGoods_tag("test");
$input->SetNotify_url("http://paysdk.weixin.qq.com/example/notify.php");
$input->SetTrade_type("NATIVE");
$input->SetProduct_id("123456789");
$result = $notify->GetPayUrl($input);
$url2 = $result["code_url"];
Copy after login

QR code:



<img alt="模式二扫码支付" src="http://paysdk.weixin.qq.com/example/qrcode.php?data=<?php echo urlencode($url2);?>" style="width:150px;height:150px;"/>
Copy after login
First instantiate the class WxPayUnifiedOrder, then set some parameters required for payment, and pass the required parameters to the function GetPayUrl()


The function is defined in the example/Wxpay.NativePay.php file


public function GetPayUrl($input)
	{
		if($input->GetTrade_type() == "NATIVE")
		{
			$result = WxPayApi::unifiedOrder($input);
			return $result;
		}
	}
Copy after login

$result = WxPayApi::unifiedOrder($input);
Copy after login
The code here is to call the unified ordering interface. The code is located in the file lib/WxPay.Api.php and part of the code is



if($inputObj->GetTrade_type() == "JSAPI" && !$inputObj->IsOpenidSet()){
			throw new WxPayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
		}
		if($inputObj->GetTrade_type() == "NATIVE" && !$inputObj->IsProduct_idSet()){
			throw new WxPayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
		}
Copy after login

Determine the payment method, if it is JsApi method, Openid is required


The Native method must require product_id. By the way, let’s make another complaint to determine whether it is a Native payment method. The lack of product_id prompt turns out to be JSAPI required product_id.

Alas, I really can’t be sloppy anymore. The SDK can be written in such a sloppy way.

After that, the unified ordering interface process is called.


After the function is executed, a link starting with weixin:// will be returned, and then the phpqrcode program can be called to generate the QR code.

The payment result processing page can still use the processing logic in the notify.php file.


Further reading:

WeChat payment scan code payment (java version native payment)
WeChat payment development process
The latest version of WeChat Payment JS-SDK, starting from 0
iOS-About WeChat Pay

The above introduces WeChat payment - scan code payment, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles