php实现微信支付的代码
程序员文章站
2022-03-21 10:43:24
...
这篇文章主要介绍了关于php实现微信支付的代码,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
1; 获取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 }
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
以上就是php实现微信支付的代码的详细内容,更多请关注其它相关文章!
上一篇: *修改phpstudy的php版本的方法
下一篇: 微信二次开发之文本消息请求与发送
推荐阅读
-
微信小程序中的video视频实现 自定义播放按钮、封面图、视频封面上文案
-
微信小程序开发之Mustache语法的代码实例分享
-
zen_cart实现支付前生成订单的方法,zen_cart生成订单_PHP教程
-
微信公众平台开发实例 PHP开发 代码挂载SAE平台(六)星座物语 p
-
php调用百度百科api实现查询功能的代码实现,该怎么处理
-
jQuery中的RadioButton,input,CheckBox取值赋值实现代码_PHP
-
简易的微信支付封装类,可以jsapi支付+native支付+h5支付
-
微信“摇一摇”功能是怎么实现的?
-
PHP读取网页文件内容的实现代码(fopen,curl等)_PHP教程
-
微商城代码片段--微信公众号支付接口