


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!

PHPsessionstrackuserdataacrossmultiplepagerequestsusingauniqueIDstoredinacookie.Here'showtomanagethemeffectively:1)Startasessionwithsession_start()andstoredatain$_SESSION.2)RegeneratethesessionIDafterloginwithsession_regenerate_id(true)topreventsessi

In PHP, iterating through session data can be achieved through the following steps: 1. Start the session using session_start(). 2. Iterate through foreach loop through all key-value pairs in the $_SESSION array. 3. When processing complex data structures, use is_array() or is_object() functions and use print_r() to output detailed information. 4. When optimizing traversal, paging can be used to avoid processing large amounts of data at one time. This will help you manage and use PHP session data more efficiently in your actual project.

The session realizes user authentication through the server-side state management mechanism. 1) Session creation and generation of unique IDs, 2) IDs are passed through cookies, 3) Server stores and accesses session data through IDs, 4) User authentication and status management are realized, improving application security and user experience.

Tostoreauser'snameinaPHPsession,startthesessionwithsession_start(),thenassignthenameto$_SESSION['username'].1)Usesession_start()toinitializethesession.2)Assigntheuser'snameto$_SESSION['username'].Thisallowsyoutoaccessthenameacrossmultiplepages,enhanc

Reasons for PHPSession failure include configuration errors, cookie issues, and session expiration. 1. Configuration error: Check and set the correct session.save_path. 2.Cookie problem: Make sure the cookie is set correctly. 3.Session expires: Adjust session.gc_maxlifetime value to extend session time.

Methods to debug session problems in PHP include: 1. Check whether the session is started correctly; 2. Verify the delivery of the session ID; 3. Check the storage and reading of session data; 4. Check the server configuration. By outputting session ID and data, viewing session file content, etc., you can effectively diagnose and solve session-related problems.

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

Configuring the session lifecycle in PHP can be achieved by setting session.gc_maxlifetime and session.cookie_lifetime. 1) session.gc_maxlifetime controls the survival time of server-side session data, 2) session.cookie_lifetime controls the life cycle of client cookies. When set to 0, the cookie expires when the browser is closed.


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

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.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools
