Detailed introduction to php WeChat payment interface development program

高洛峰
Release: 2017-03-16 15:23:57
Original
2311 people have browsed it

WeChat paymentInterface Now slowly, like Alipay, you can use the api interface to realize payment on third-party websites or applications. The following is a php WeChat payment interface development The program has been tested. Interested friends can refer to

php WeChat payment interface development program explanation:

Required conditions:
appid //Obtained by the official account backend developer center (same as the one in the email)

mchid//Obtained in the email

key//Set by the merchant backend

appsecret //The official account developer center obtained
two certificate files, and obtained apiclient_cert.pem in the email apiclient_key.pem
Notes:
WeChat payment in the background of the official account-》Development configuration-》Add test directory and test personal WeChat ID.
Developer Center-》Web page authorization to obtain basic user information-》Change to your test domain name. Otherwise, redirect_uri parameter error will occur
——————————Follow-up to be improved——————-
The WeChat payment ready page has performed three operations on its own in the background:

1. Get openid


//使用jsapi接口
 
 代码如下复制代码
  $jsApi = new JsApi_pub();
 
  //=========步骤1:网页授权获取用户openid============
  //通过code获得openid
  if (!isset($_GET['code']))
  {
    //触发微信返回code码
    $url = $jsApi->createOauthUrlForCode(WxPayConf_pub::JS_API_CALL_URL);
    //echo $url;
    Header("Location: $url");
  }else
  {
    //获取code码,以获取openid
    $code = $_GET['code'];
    $jsApi->setCode($code);
    $openid = $jsApi->getOpenid();
  }
Copy after login

I also encountered problems in the first step when I first started. The inability to obtain openid is related to some servers. The demo uses curl to obtain it.
It’s strange that my server curl has been unable to be obtained. Later, it was changed to file_get_contents and it can be obtained normally.
But this is not the solution. Because more curl operations will be needed later.
I saw a place in the development documentation where the certificate operation requires libcurl 7.20.1 or above. Then I have been working on the server to improve the php curl version of linux. In the end, I just switched to another windows server.
Let's do this for now, and debug when we need to use it next time.

Second step: Get and pay order number id
The code is as follows


$unifiedOrder = new UnifiedOrder_pub();
   
  //var_dump($unifiedOrder);
  //设置统一支付接口参数
  //设置必填参数
  //appid已填,商户无需重复填写
  //mch_id已填,商户无需重复填写
  //noncestr已填,商户无需重复填写
  //spbill_create_ip已填,商户无需重复填写
  //sign已填,商户无需重复填写
  $unifiedOrder->setParameter("openid","$openid");//商品描述
  $unifiedOrder->setParameter("body","贡献一分钱");//商品描述
  //自定义订单号,此处仅作举例
  $timeStamp = time();
  $out_trade_no = WxPayConf_pub::APPID."$timeStamp";
  $unifiedOrder->setParameter("out_trade_no","$out_trade_no");//商户订单号 
  $unifiedOrder->setParameter("total_fee","1");//总金额
  $unifiedOrder->setParameter("notify_url",WxPayConf_pub::NOTIFY_URL);//通知地址 
  $unifiedOrder->setParameter("trade_type","JSAPI");//交易类型
  //非必填参数,商户可根据实际情况选填
  //$unifiedOrder->setParameter("sub_mch_id","XXXX");//子商户号 
  //$unifiedOrder->setParameter("device_info","XXXX");//设备号 
  //$unifiedOrder->setParameter("attach","XXXX");//附加数据 
  //$unifiedOrder->setParameter("time_start","XXXX");//交易起始时间
  //$unifiedOrder->setParameter("time_expire","XXXX");//交易结束时间 
  //$unifiedOrder->setParameter("goods_tag","XXXX");//商品标记 
  //$unifiedOrder->setParameter("openid","XXXX");//用户标识
  //$unifiedOrder->setParameter("product_id","XXXX");//商品ID
 
 
  $prepay_id = $unifiedOrder->getPrepayId();
   
  //echo 'prepay_id:';
  var_dump($prepay_id);
Copy after login

There are many problems encountered in this step The problem.
First of all, it is difficult to test WeChat payment, and it can only be tested within WeChat. I just use my phone to swipe around.
Secondly, it is not easy to use var_dump for debugging. Print some files in xml format and only display the character length, not the content. So I wrote it in the form of log for debugging on the server. The log code:
The code is as follows


// 打印log
  function log_d($word) 
  {
    $log_name="./logd.log";//log文件路径
    $fp = fopen($log_name,"a");
    flock($fp, LOCK_EX) ;
    fwrite($fp,"执行日期:".strftime("%Y-%m-%d-%H:%M:%S",time())."n".$word."nn");
    flock($fp, LOCK_UN);
    fclose($fp);
  }
Copy after login

Use $this->log_d in WxPayPubHelper.php in the demo (xxx); call.
At the beginning, I kept getting errors because the mchid and appid given to me did not match. . They gave me the wrong account number. At the beginning, I didn’t know how to try randomly. For this step of debugging, you can see the error code using var_dump($this->result); in getPrepayId().

The third step: Generate the payment front-end js code and put it on the web page:
The code is as follows


$jsApi->setPrepayId($prepay_id);
 
$jsApiParameters = $jsApi->getParameters();
Copy after login

————————-Click to pay————————-

Another problem encountered in this part:
android Returns "System: Access_denied", ios returns "access_control:not_allowed"
I searched a lot on Baidu. In fact, I have seen this thing for a long time and never noticed it!
The page that initiates the authorization request must be in the authorization directory and cannot exist in a subdirectory. Otherwise, an error will be returned
I placed the payment file in /domain name/pay/demo/
At the beginning, I always reached the end of /domain name/pay/ and thought that was enough. Support subdirectories, the result is not possible! .
————————Finally look at the picture below————

wxpay1
wxpay3
wxpay2

—— ————xmljs in the process——————–
Generate and pay order id to be submitted:
The code is as follows



 
 
 
 1
 
 
 
 10012345
 
 
 
Copy after login

Return after submission Correct, it contains perpay_id:



  
  
  
  
  
  
  
  
  
Copy after login

Generate js for payment:


{
  "appId": "wx8888888888888888",
  "timeStamp": "1414411784",
  "nonceStr": "gbwr71b5no6q6ne18c8up1u7l7he2y75",
  "package": "prepay_id=wx201410272009395522657a690389285100",
  "signType": "MD5",
  "paySign": "9C6747193720F851EB876299D59F6C7D"
}
Copy after login

Payment successful The notification xml returned after that is:















1


Copy after login

I’m random about the data in this, so please refer to the format below. Also note that it is case sensitive.

The above is the detailed content of Detailed introduction to php WeChat payment interface development program. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!