


How to use CodeIgniter to develop and implement Alipay interface calls
This article mainly introduces the method of using CodeIgniter to develop and implement the Alipay interface. It analyzes the operation steps and related implementation techniques of CodeIgniter to develop the Alipay interface in the form of examples. Friends in need can refer to the following
The examples of this article are explained Use CodeIgniter to develop methods to implement Alipay interface calls. Share it with everyone for your reference, the details are as follows:
Preparation:
1. Alipay official download the latest interface class library
2. After unzipping, copy the directory "\Instant Account Transaction Interface -create_direct_pay_by_user\demo\create_direct_pay_by_user-PHP-UTF-8\lib" to the application\third_party directory, and rename lib to alipay
3. Also copy the cacert.pem file to the "application\third_party\alipay" directory. This is not necessary. The certificate used when using the SSL channel
Code example:
Only the controller part of the code is listed below. The view and model can be written according to your actual needs
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * alipy支付接口 * @author onwulc@163.com * */ class Alipay extends CI_Controller { private $alipay_config; function __construct(){ parent::__construct(); $this->_init_config(); $this->load->helper('url'); } function index(){ $this->load->view('alipay');//装载支付视图页面,post到do_alipay } function do_alipay(){ require_once(APPPATH.'third_party/alipay/alipay_submit.class.php'); //构造要请求的参数数组,无需改动 $parameter = array( "service" => "create_direct_pay_by_user", "partner" => trim($this->alipay_config['partner']), "payment_type" => '1', "notify_url" => site_url('alipay/do_notify'), "return_url" => site_url('alipay/do_return'), "seller_email" => trim($this->alipay_config['seller_emaill']),//支付宝帐户, "out_trade_no" => $this->input->post('WIDout_trade_no'),//商户订单号 "subject" => $this->input->post('WIDsubject'),//订单名称 "total_fee" => $this->input->post('WIDtotal_fee'),//必填,付款金额 "body" => $this->input->post('WIDbody'),//必填,订单描述 "show_url" => $this->input->post('WIDshow_url'),//商品展示地址 "anti_phishing_key" => '',//防钓鱼时间戳 "exter_invoke_ip" => '',//客户端的IP地址 "_input_charset" => trim(strtolower($this->alipay_config['input_charset'])) ); //建立请求 $alipaySubmit = new AlipaySubmit($this->alipay_config); $html_text = $alipaySubmit->buildRequestForm($parameter,"get", "确认"); echo $html_text; } function do_notify(){ require_once(APPPATH.'third_party/alipay/alipay_notify.class.php'); } function do_return(){ require_once(APPPATH.'third_party/alipay/alipay_notify.class.php'); $alipayNotify = new AlipayNotify($this->alipay_config); $verify_result = $alipayNotify->verifyReturn(); //商户订单号 $out_trade_no = $_GET['out_trade_no']; //支付宝交易号 $trade_no = $_GET['trade_no']; //交易状态 $trade_status = $_GET['trade_status']; if($_GET['trade_status'] == 'TRADE_FINISHED' || $_GET['trade_status'] == 'TRADE_SUCCESS') { //判断该笔订单是否在商户网站中已经做过处理 //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序 //如果有做过处理,不执行商户的业务程序 echo '支付成功,交易处理环节'; }else { echo "trade_status=".$_GET['trade_status']; } echo "验证成功<br />"; } /** * 初始化支付宝配置,详细参数请根据自己实际接口修改 */ private function _init_config(){ //支付宝帐户 $alipay_config['seller_emaill'] = ''; //合作身份者id,以2088开头的16位纯数字 $alipay_config['partner'] = '2088999999999999'; //安全检验码,以数字和字母组成的32位字符 $alipay_config['key'] = 'vhyjvdht3ayxbtx692vlkbwilhXXXXXX'; //签名方式 不需修改 $alipay_config['sign_type'] = strtoupper('MD5'); //字符编码格式 目前支持 gbk 或 utf-8 $alipay_config['input_charset'] = strtolower('utf-8'); //ca证书路径地址,用于curl中ssl校验 //请保证cacert.pem文件在当前文件夹目录中 $alipay_config['cacert'] = APPPATH.'third_party/alipay/cacert.pem'; //访问模式,根据自己的服务器是否支持ssl访问,若支持请选择https;若不支持请选择http $alipay_config['transport'] = 'http'; $this->alipay_config = $alipay_config; } }
The above is the entire content of this article. I hope it will be helpful to everyone’s study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
How to use the CodeIgniter framework to upload images
The above is the detailed content of How to use CodeIgniter to develop and implement Alipay interface calls. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Alipay PHP...

Problem Description When calling Alipay EasySDK using PHP, after filling in the parameters according to the official code, an error message was reported during operation: "Undefined...

The OKX trading platform offers a variety of rates, including transaction fees, withdrawal fees and financing fees. For spot transactions, transaction fees vary according to transaction volume and VIP level, and adopt the "market maker model", that is, the market charges a lower handling fee for each transaction. In addition, OKX also offers a variety of futures contracts, including currency standard contracts, USDT contracts and delivery contracts, and the fee structure of each contract is also different.

The main difference between an abstract class and an interface is that an abstract class can contain the implementation of a method, while an interface can only define the signature of a method. 1. Abstract class is defined using abstract keyword, which can contain abstract and concrete methods, suitable for providing default implementations and shared code. 2. The interface is defined using the interface keyword, which only contains method signatures, which is suitable for defining behavioral norms and multiple inheritance.

This article provides a detailed guide to safe download of Ouyi OKX App in China. Due to restrictions on domestic app stores, users are advised to download the App through the official website of Ouyi OKX, or use the QR code provided by the official website to scan and download. During the download process, be sure to verify the official website address, check the application permissions, perform a security scan after installation, and enable two-factor verification. During use, please abide by local laws and regulations, use a safe network environment, protect account security, be vigilant against fraud, and invest rationally. This article is for reference only and does not constitute investment advice. Digital asset transactions are at your own risk.

H5. The main difference between mini programs and APP is: technical architecture: H5 is based on web technology, and mini programs and APP are independent applications. Experience and functions: H5 is light and easy to use, with limited functions; mini programs are lightweight and have good interactiveness; APPs are powerful and have smooth experience. Compatibility: H5 is cross-platform compatible, applets and APPs are restricted by the platform. Development cost: H5 has low development cost, medium mini programs, and highest APP. Applicable scenarios: H5 is suitable for information display, applets are suitable for lightweight applications, and APPs are suitable for complex functions.

Gate.io (Sesame Open Door) is the world's leading cryptocurrency trading platform. This article provides a complete tutorial on spot trading of Gate.io. The tutorial covers steps such as account registration and login, KYC certification, fiat currency and digital currency recharge, trading pair selection, limit/market transaction orders, and orders and transaction records viewing, helping you quickly get started on the Gate.io platform for cryptocurrency trading. Whether a beginner or a veteran, you can benefit from this tutorial and easily master the Gate.io trading skills.

The choice of H5 and applet depends on the requirements. For applications with cross-platform, rapid development and high scalability, choose H5; for applications with native experience, rich functions and platform dependencies, choose applets.
