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

服务端使用easywechat库来操作微信接口,版本要求4.1.15或更高。

相关文档

微信小程序码:https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/qr-code.html

easywechat生成小程序码:https://www.easywechat.com/docs/master/mini-program/app_code

示例代码:


app_code->getUnlimit('paramsa-'.'paramsval');

// 保存到本地
$local_folder = base_path().'/public/tmp/'; // 本地绝对路径,存放生成的二维码
$filename = 'test.png';

if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
    $response->saveAs($local_folder, $filename);
}

你可能感兴趣的:(PHP)