Home  >  Article  >  Backend Development  >  PHP code to implement WeChat payment

PHP code to implement WeChat payment

不言
不言Original
2018-07-05 10:50:034028browse

This article mainly introduces the code for implementing WeChat payment in PHP, which has certain reference value. Now I share it with everyone. Friends in need can refer to it

1; Get code;

window.location.href="https://open.weixin.qq.com/connect/oauth2/authorize?appid="+APPID+"&redirect_uri="+URL+"&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect";

2;

    public function getJson($url){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $output = curl_exec($ch);
        curl_close($ch);
        return json_decode($output, true);
    }
//    获取用户信息
    function getUserInfo(Request $request)
    {

        $appid  = '';
        $secret  = '';
        $access_token = "";

        $code = $request->param('code');

            //第一步:取全局access_token
            $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=$appid&secret=$secret";
            $token = $this->getJson($url);

       //第二步:取得openid
            $oauth2Url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$secret&code=$code&grant_type=authorization_code";
            $oauth2 = $this->getJson($oauth2Url);

       //第三步:根据全局access_token和openid查询用户信息
            $access_token = $token["access_token"];
            $openid = $oauth2['openid'];
            $get_user_info_url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=$access_token&openid=$openid&lang=zh_CN";
            $userinfo = $this->getJson($get_user_info_url);

            return $userinfo 
  }

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 implement proxy mode in php

Introduction to how to implement weighing in php

The above is the detailed content of PHP code to implement WeChat payment. For more information, please follow other related articles on the PHP Chinese website!

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