<?php
namespace app\index\controller;
class Qrcode
{
public function create()
{
$accessInfo = $this->ch("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=********&secret=*****");
// var_dump($accessInfo);exit;
//永久二维码
$accessToken = $accessInfo['access_token'];
$url = "https://api.weixin.qq.com/cgi-bin/qrcode/create?access_token=" . $accessToken;
$postArr = [
"action_name" => "QR_LIMIT_SCENE",
"action_info" => [
'scene' => ['scene_str' => "aaa"],
],
];
$postJson = json_encode($postArr);
$res = $this->ch($url, 'post', 'json', $postJson);
$ticket = $res['ticket'];
// exit($ticket);
$url = "https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=" . urlencode($ticket);
echo "<img src='" . $url . "'>";
}
//url请求ticket
public function ch($url, $type='post', $res='json', $arr="")
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
if ($type == 'post') {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $arr);
}
$cnt = curl_exec($ch);
if (curl_errno($ch)) {
return;
}
curl_close($ch);
if ($res == 'json') {
return json_decode($cnt, true);
}
return $cnt;
}
}
fuxin.chen
2023年3月8日 下午3:31
学习了
fuxin.chen
2023年3月8日 下午3:45
学习了131