微信小程序 PHP生成带参数二维码

前端之家收集整理的这篇文章主要介绍了微信小程序 PHP生成带参数二维码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

微信小程序 PHP生成带参数二维码

官方获取小程序页面API

由于小程序参数二维码API提供的帮助有限,以下是我对该功能的一些理解

我主要是通过thinkPHP后台接口实现,代码如下:

1、先获取ACCESS_TOKEN:

appid."&secret=".$this->secret; $getArr=array(); $tokenArr=json_decode($this->send_post($tokenUrl,$getArr,"GET")); $access_token=$tokenArr->access_token;

send_post:

array( 'method' => $method,//or GET 'header' => 'Content-type:application/x-www-form-urlencoded','content' => $postdata,'timeout' => 15 * 60 // 超时时间(单位:s) ) ); $context = stream_context_create($options); $result = file_get_contents($url,false,$context); return $result; }

2、生成二维码

api_notice_increment($url,$post_data);

api_notice_increment:

3、根据返回的二进制数据生成图片上传到自己的服务器

主要代码

PHP;"> file_put_contents($filepath,$result)

上传服务部分代码,不贴了!感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

原文链接:https://www.f2er.com/weapp/41419.html

猜你在找的微信小程序相关文章