search
HomeBackend DevelopmentPHP TutorialUse PHP to implement quick money payment function (involving interfaces)_PHP tutorial
Use PHP to implement quick money payment function (involving interfaces)_PHP tutorialJul 21, 2016 pm 03:01 PM
frameworkmodphpzenduseFunctionaccomplishinterfacepayframeuseofproject

This project is implemented using zend framework
modules/default/controllers/IndexController.php
IndexController.php

Copy code The code is as follows:

class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
Public function indexAction()
{

/*Mock Order
*$MockOrder is the information taken out from the database, it contains some dollar Request information. I wrote it to death here.
*orderId order number, the primary key (unique) of the database table. //Required fields
*usr_idtype document type, according to your needs.
*usr_idcode ID number, according to your needs.
*Whether etx_status is discounted or not depends on your needs.
*time_create Verify whether it meets the preferential time, according to your own needs.
*ets_license package code is like a product category, according to your needs.
*contact_type contact type, fixed selection value 1,2. 1 email, 2 mobile phone number, according to your own needs, the dollar side can be empty.
*contact_text contact information, fill in according to contact_type, according to your own needs, the dollar side can be empty.
*etsPrice package price and product price, according to your needs.
*orderPrice is the actual price, based on your needs.
*orderAmount is the actual payment amount of the order, which will be subject to a handling fee. //Required fields
*orderTime order time. ​​​​​//Required fields
​​​​​​​​​​​ // The necessary field *Buysuccess account is successful, and the success time is successful according to your needs
*Paytime order payment. //Required fields
*In short, everything related to the order is a necessary field
*orderId, orderAmount, orderTime are required fields for Request
*paySuccess, payTime are required fields for Response
*/
$MockOrder = array();
$MockOrder['orderId'] = '100000125';//Order number. --Required
$MockOrder['usr_idtype'] = '1';//Document type, ID card
$MockOrder['usr_idcode'] = '371111199011111111';//ID card number
$MockOrder ['etx_status'] = '0';//Whether it is a discount, no
$MockOrder['time_create'] = '1352338189';//Verify whether the time is discounted
$MockOrder['ets_license'] = '1 ';//Package code and product category
$MockOrder['contact_type'] = '1';//Contact type 1, email
$MockOrder['contact_text'] = 'x@163.com' ;//Contact information, email
$MockOrder['etsPrice'] = '30800';//Package price and product price
$MockOrder['orderPrice'] = '30800';//Actual price
$MockOrder['orderAmount'] = '31100';//The actual price paid for the order, plus handling fee. --Required
$MockOrder['orderTime'] = '1352338199';//Order generation time. --Required
$MockOrder['paySuccess'] = '0';//Whether the order was paid successfully. --Required
$MockOrder['buySuccess'] = '0';//Whether the account is generated successfully
$MockOrder['payTime'] = '0';//Order payment time.--Necessary

//BillRequest is some parameters needed by Kuaiqian
$this->view->BillRequest = new Application_Model_BillRequest($MockOrder);
Zend_Debug::dump ($this->view->BillRequest);exit;
}

//bgUrl address points here
public function receiveAction()
{
//receive database Design
/*Use $MockReceive array to simulate
* $MockReceive = array();
* $MockReceive['id'] primary key;
* $MockReceive['orderId'] merchant order number;
* $MockReceive['receiveTime'] receiving time;
* $MockReceive['queryString']http_build_encode($_REQUEST);
* $MockReceive['dealId'] fast money transaction number;
* $MockReceive['bankDealId'] bank transaction number;
* $MockReceive['payResult'] processing result 10: payment successful; 11: payment failed;
* $MockReceive['dealTime'] quick money transaction time ;
* $MockReceive['payAmount'] actual payment amount of order;
* $MockReceive['fee'] fee;
* $MockReceive['errCode'] error code;
*/


/*$_REQUEST is the data returned by Kuaiqian
* merchantAcctId RMB account number, consistent with the dollar account number when submitting the order.
* version Gateway version, fixed value: v2.0, consistent with the gateway version number when submitting the order.
* language The language type displayed on the web page, 1 Chinese display, is consistent with the language type displayed on the web page when submitting the order
* signType signature type, 4PKI signature, consistent with the signature type when submitting the order
* payType Payment method, 00 all, consistent with the payment method when submitting the order
* bankId bank code
* orderId merchant order number, consistent with the merchant order number when submitting the order
* orderTime merchant order submission time , consistent with the merchant order submission time when the order is submitted
* orderAmount merchant order amount, consistent with the merchant order amount when the order is submitted.
* dealId fast money transaction number
Consistent with the extended field 1 when submitting the order
* ext2 extended field 2, consistent with the extended field 2 when submitting the order
* payResult processing result 10: payment successful; 11: payment failed
* errCode Error code, can be empty
* signMsg signature string
*/
$BillResponse = new Application_Model_BillResponse($_REQUEST);
//$BillResponse->checkSignMsg verifies whether the signature string is correct, Prevent bugs and loopholes
if($BillResponse->checkSignMsg){
//Judge whether the order payment is successful
if($BillResponse->isSuccess){
//Return to quick money, Quick Money will jump to a new page according to the redirecturl address. Here is the success page
return "1http://99bill/default/index/sucess"; exit;
}else{
//Return to Kuaiqian, Kuaiqian will jump to a new page according to the redirecturl address. This is the failure page
return "1";exit;
}
}
//Return to Kuaiqian, Kuaiqian will jump to the new page according to the redirecturl address, this It is a failure page
return "1http://99bill/default/index/fail";exit;
}

//redirecturl address
//Success
public function success()
{

}

//Failure
public function fail()
{

}
}


modules/default/views/scripts/index/index.phtml
https://www.99bill.com/gateway/recvMerchantInfoAction.htm
复制代码 代码如下:

BillRequest;?>


$val):?>
 

 


<script><BR>document.getElementById('kqPay').click();<BR></script>

models/BillRequest.php
BillRequest.php
复制代码 代码如下:

class Application_Model_BillRequest
{
public function __construct($MockOrder){
/*
* RMB gateway account.
*The first method: the account is the 11-digit RMB gateway merchant number + 01, this parameter is required. 01 corresponds to Industrial and Commercial Bank of China.
*Second method: The account is a 16-digit RMB gateway merchant
*/
$this->merchantAcctId = "1001011111101";
//The backend address where the server receives the payment result, the The parameters must be filled in, and the absolute path // cannot be empty.
$this->bgUrl = "http://99bill/default/index/receive";
//Merchant order number, the following uses time to define the order number, the merchant can define the order number according to its own rules To define the value // cannot be empty.
$this->orderId = 'TOLPC'.sprintf("%09d", $MockOrder['orderId']);
//Order amount, the amount is in "cents", the merchant test is in 1 Just test in batches. Do not test with a large amount. This parameter is required //cannot be empty
$this->orderAmount =$MockOrder['orderAmount'];
//Order submission time, format: yyyyMMddHHmmss, such as: 20071117020101//cannot be empty.
$this->orderTime = date("YmdHis", $MockOrder['orderTime']);
//Payer name, can be empty.
$this->payerName= "";
//Payer contact type, 1 represents email; 2 represents mobile phone contact. Can be empty.
$this->payerContactType = "";
//Payer contact information, corresponding to the payerContactType setting. If payerContactType is 1, fill in the email address; if payerContactType is 2, fill in the mobile phone number. Can be empty.
$this->payerContact = "";
// Product name, can be empty.
$this->productName= "TOLPC";
//Product quantity, can be empty.
$this->productNum = "1";
//Product code, can be empty.
$this->productId = $MockOrder['ets_license'];
// Product description, can be empty.
$this->productDesc = "";
//Payment method, usually 00, represents all payment methods. If it is a merchant directly connected to the bank, the value is 10, required // cannot be empty
$this->payType = "00";
//Encoding method, 1 represents UTF-8; 2 represents GBK ; 3 represents GB2312, the default is 1, this parameter is required // cannot be empty
$this->inputCharset = "1";
//Gateway version, fixed value: v2.0, this parameter is required //Cannot be empty
$this->version = "v2.0";
//Language type, 1 represents Chinese display, 2 represents English display. The default is 1, this parameter is required//cannot be empty
$this->language = "1";
//Signature type, the value is 4, representing the PKI encryption method, this parameter is required/ /Cannot be empty
$this->signType = "4";
//The page address for receiving payment results. This parameter is generally left empty.
$this->pageUrl = "";
//Extended field 1, merchants can pass the parameters they need. After payment, the original value will be returned, which can be empty.
$this->ext1 = $MockOrder['orderId'];
//Extended from paragraph 2, merchants can pass the parameters they need, and the original value will be returned after payment, which can be empty.
$this->ext2 = $MockOrder['orderTime'];
//Bank code, if payType is 00, the value can be empty; if payType is 10, the value must be filled in, please refer to the details Bank list.
$this->bankId = "";
//Repeated submission of the same order is prohibited, fill in 1 for the physical shopping cart, and 0 for virtual products. 1 means it can only be submitted once, 0 means the payment is unsuccessful. You can submit it again. Can be empty.
$this->redoFlag = "";
//The account number of the quick money partner, that is, the merchant number, can be empty.
$this->pid = "";

//The request parameters provided by Kuaiqian.
$KeyOrders = array('inputCharset','pageUrl','bgUrl','version','language','signType','merchantAcctId','payerName','payerContactType','payerContact',
'orderId','orderAmount','orderTime','productName','productNum','productId','productDesc','ext1','ext2','payType','bankId','redoFlag',' pid',);

//Determine whether the value of the request parameter provided by Kuaiqian is empty, and reorganize the non-empty parameters and values ​​into an array
foreach($KeyOrders as $key){
if(''==$this->{$key}){continue;}
$params[$key] = $this->{$key};
}
// http_build_query() generates the request string after URL-encoding
//urldecode() restores the unencoded string
//getSignMsg() PKI encryption, MD5 encryption can also be used
//MD5 encryption method strtoupper(md5(urldecode(http_build_query($params)))); This is not commonly used anymore.
//Commonly used PKI encryption
$this->signMsg = $this->getSignMsg(urldecode(http_build_query($params)));
}

//PKI encryption technology

public function getSignMsg($param){
//99bill-rsa.pem is a CA certificate of Kuaiqian
//Locally generate a KEY randomly, use this KEY to encrypt the data KEY is $ priv_key_id
$priv_key_id = openssl_get_privatekey(file_get_contents("99bill-rsa.pem", "r"));
//Use $priv_key_id to encrypt $param data.
//Calculate a signature string $param by using SHA1 hash encryption, followed by $priv_key_id private key encryption. The data itself is not encrypted.
openssl_sign($param, $signMsg, $priv_key_id, OPENSSL_ALGO_SHA1);
//Release $priv_key_id from storage
openssl_free_key($priv_key_id);
//Use base64 to encode the data
return base64_encode($signMsg);
}
}

models/BillResponse.php
BillResponse.php
Copy code The code is as follows:

class Application_Model_BillResponse
{
/*
* __construct() construction Function
* Generates 19 parameters and values. One parameter may have an empty value, and the value of $this->errCode may be empty
*/
public function __construct($response){
$KeyOrders = array('merchantAcctId','version','language','signType','payType','bankId','orderId','orderTime','orderAmount',
'dealId',' bankDealId','dealTime','payAmount','fee','ext1','ext2','payResult','errCode', 'signMsg');
foreach($KeyOrders as $key){
$this->{$key} = $response[$key];
}
}
/*
* Check the signature string
* The signature string returned by Kuaiqian It’s $this->signMsg
* Use base64 to decode the previous string
* Verify using the public key given by Kuaiqian
* Kuaiqian they ensure that the returned parameter value is not empty Using private key encryption to generate $this->signMsg
* Kuaiqian gave us the public key corresponding to the private key, and we used this public key to verify. 1 for success, 0 for failure, -1 for error.
*/
public function checkSignMsg(){
$KeyOrders = array('merchantAcctId','version','language','signType','payType','bankId','orderId', 'orderTime','orderAmount',
'dealId','bankDealId','dealTime','payAmount','fee','ext1','ext2','payResult','errCode',);
foreach($KeyOrders as $key){
if(''==$this->{$key}){continue;}
$params[$key] = $this->{ $key};
}
//$pub_key_id public key
$pub_key_id = openssl_get_publickey(file_get_contents("99bill-rsa.cer", "r"));
return openssl_verify(urldecode(http_build_query ($params)), base64_decode($this->signMsg), $pub_key_id);
}
public function isSuccess(){
//$this->payResult 10 on success, 10 on failure 11
return '10'==$this->payResult;
}
public function getOrderId(){
return str_replace('XXX', '', $this->orderId) ;
}
}

Requires a public key and a private key, this is not a pair
Both are half
99bill-rsa.cer
99bill-rsa.pem

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327972.htmlTechArticleThis project uses the zend framework to implement modules/default/controllers/IndexController.php IndexController.php Copy the code as follows : ?php class IndexController extends Zend_Con...
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
如何在Go中使用命名管道?如何在Go中使用命名管道?May 11, 2023 pm 04:22 PM

命名管道是一种在操作系统中相对比较低级的进程通信方式,它是一种以文件为中介的进程通信方式。在Go语言中,通过os包提供了对命名管道的支持。在本文中,我们将介绍如何在Go中使用命名管道来实现进程间通信。一、命名管道的概念命名管道是一种特殊的文件,可以被多个进程同时访问。在Linux系统中,命名管道是一种特殊的文件类型,它们存在于文件系统的某个位置上,并且可以在

如何在Go中使用第三方库?如何在Go中使用第三方库?May 11, 2023 pm 03:30 PM

在Go语言中,使用第三方库是非常方便的。许多优秀的第三方库和框架可以帮助我们快速地开发应用程序,同时也减少了我们自己编写代码的工作量。但是如何正确地使用第三方库,确保其稳定性和可靠性,是我们必须了解的一个问题。本文将从以下几个方面介绍如何使用第三方库,并结合具体例子进行讲解。一、第三方库的获取Go语言中获取第三方库有以下两种方式:1.使用goget命令首先

如何在PHP中使用协程?如何在PHP中使用协程?May 12, 2023 am 08:10 AM

随着传统的多线程模型在高并发场景下的性能瓶颈,协程成为了PHP编程领域的热门话题。协程是一种轻量级的线程,能够在单线程中实现多任务的并发执行。在PHP的语言生态中,协程得到了广泛的应用,比如Swoole、Workerman等框架就提供了对协程的支持。那么,如何在PHP中使用协程呢?本文将介绍一些基本的使用方法以及常见的注意事项,帮助读者了解协程的运作原理,以

如何在PHP中使用变量函数如何在PHP中使用变量函数May 18, 2023 pm 03:52 PM

变量函数是指可以使用变量来调用函数的一种特殊语法。在PHP中,变量函数是非常有用的,因为它可以让我们更加灵活地使用函数。在本文中,我们将介绍如何在PHP中使用变量函数。定义变量函数在PHP中,变量函数的定义方式非常简单,只需要将要调用的函数名赋值给一个变量即可。例如,下面的代码定义了一个变量函数:$func='var_dump';这里将var_dump函

如何在 Windows 11 中按需使用 OneDrive 的文件如何在 Windows 11 中按需使用 OneDrive 的文件Apr 14, 2023 pm 12:34 PM

&lt;p&gt;Windows 系统上的 OneDrive 应用程序允许您将文件存储在高达 5 GB 的云上。OneDrive 应用程序中还有另一个功能,它允许用户选择一个选项,是将文件保留在系统空间上还是在线提供,而不占用您的系统存储空间。此功能称为按需文件。在这篇文章中,我们进一步探索了此功能,并解释了有关如何在 Windows 11 电脑上的 OneDrive 中按需使用文件的各种选项。&lt;/p&gt;&lt;h2&gt;如何使用 On

如何在Go中使用WebSocket?如何在Go中使用WebSocket?May 11, 2023 pm 04:17 PM

近年来,WebSocket技术已经成为了Web开发中不可或缺的一部分。WebSocket是一种在单个TCP连接上进行全双工通信的协议,它使得客户端和服务器之间的通信更加流畅和高效。如今,很多现代的Web应用程序都使用了WebSocket技术,例如实时聊天、在线游戏以及实时数据可视化等。Go语言作为一个现代的编程语言,自然也提供了很好的支持WebSock

如何在Go中使用音频处理?如何在Go中使用音频处理?May 11, 2023 pm 04:37 PM

随着音频处理在各种应用场景中的普及,越来越多的程序员开始使用Go编写音频处理程序。Go语言作为一种现代化的编程语言,具有优秀的并发性和高效率的特点,使用它进行音频处理十分方便。本文将介绍如何在Go中使用音频处理技术,包括读取、写入、处理和分析音频数据等方面的内容。一、读取音频数据在Go中读取音频数据有多种方式。其中比较常用的是使用第三方库进行读取,比如go-

如何在PHP中使用数据聚合函数如何在PHP中使用数据聚合函数May 18, 2023 pm 02:51 PM

数据聚合函数是一种用于处理数据库表中多行数据的函数。在PHP中使用数据聚合函数可以使得我们方便地进行数据分析和处理,例如求和、平均数、最大值、最小值等。下面将介绍如何在PHP中使用数据聚合函数。一、介绍常用的数据聚合函数COUNT():计算某一列的行数。SUM():计算某一列的总和。AVG():计算某一列的平均值。MAX():取出某一列的最大值。MIN():

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

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use