Home > php教程 > php手册 > 方维团购(基于THINKPHP)银联在线支付类

方维团购(基于THINKPHP)银联在线支付类

WBOY
Release: 2016-06-07 11:43:29
Original
1480 people have browsed it

方维团购(基于THINKPHP)银联在线支付类,不知道大家用不用得到
将类放入:ThinkPHP\Vendor\payment3include_once(VENDOR_PATH."payment3/chinapay/netpayclient_config.php");<br> include_once(VENDOR_PATH."payment3/chinapay/netpayclient.php");是银联提供的配置文件。
在\app\source\index.php中加入
    if ($_REQUEST['m']=='ChinapayPayment'){<br>         require ROOT_PATH."app/source/func/com_send_sms_func.php";<br>           require ROOT_PATH."app/source/func/com_order_pay_func.php";<br>         ChinapayIndex();<br>         exit;<br>     }在\app\source\func\com_order_pay_func.php中加入function ChinapayIndex()//银联处理<br> {<br>     require_once(VENDOR_PATH.'payment3/ChinapayPayment.class.php');<br>     $payment_name = "ChinapayPayment";<br>     if(class_exists($payment_name))<br>     {<br>         $payment_model = new $payment_name;<br>         $res = $payment_model->dealResult($_GET,$_POST,$_REQUEST);<br> <br>         if($res['status'])<br>         {<br>             echo 'ok';<br>         }<br>         else <br>         {<br>             echo 'error';<br>         }    <br>     }else <br>     {<br>         echo 'error';<br>     }<br> }后台安装即可

源码见:http://www.jakehu.me/?p=273

AD:真正免费,域名+虚机+企业邮箱=0元

source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template