截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

QrCodeServer.php 3.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server;
  20. use EasyWeChat\Factory;
  21. use EasyWeChat\Kernel\Exceptions\Exception;
  22. use EasyWeChat\Kernel\Http\StreamResponse;
  23. class QrCodeServer
  24. {
  25. /**
  26. * @notes 生成小程序码,使用wxacode.getUnlimited接口
  27. * @param array $param $param 参数配置 page:页面路径;scene:页面参数;saveDir:保存路径;fileName:文件名
  28. * @param string $type 返回类型:resource时返回资源类型,file保存并返回文件,base64返回base64
  29. * @param array $extra 返回参数:返回额外参数
  30. * @return mixed|string
  31. * @author cjhao
  32. * @date 2021/11/25 101:43
  33. 1 */
  34. public static function makeMpWechatQrcode(array $param, string $type = 'resource', array $extra = [])
  35. {
  36. try {
  37. $page = $param['page'] ?? '';
  38. $scene = $param['scene'] ?? 'null';
  39. $save_dir = $param['save_dir'] ?? 'uploads/qr_code/user_share/';
  40. $file_name = $param['file_name'] ?? time() . '.png';
  41. $config = WeChatServer::getMnpConfig();
  42. $app = Factory::miniProgram($config);
  43. $response = $app->app_code->getUnlimit($scene, [
  44. 'page' => $page,
  45. ]);
  46. if(is_array($response) && 41030 === $response['errcode']){
  47. //开启错误提示,小程序未发布和页面不存在,返回提示
  48. if (41030 === $response['errcode']) {
  49. throw new Exception('所传page页面不存在,或者小程序没有发布');
  50. }
  51. throw new Exception($response['errmsg']);
  52. }
  53. $contents = $response->getBody()->getContents();
  54. switch ($type){
  55. case 'file':
  56. if ($response instanceof StreamResponse) {
  57. $file_name = $response->saveAs($save_dir, $file_name);
  58. $contents = $save_dir . $file_name;
  59. }
  60. break;
  61. case 'base64':
  62. $mp_base64 = chunk_split(base64_encode($contents));
  63. $contents = 'data:image/png;base64,' . $mp_base64;
  64. }
  65. return data_success('',['qr_code'=>$contents, 'extra' => $extra]);
  66. } catch (\EasyWeChat\Kernel\Exceptions\Exception $e){
  67. return data_error($e->getMessage());
  68. }
  69. }
  70. }