첫 번째 방법:
1, 첫 번째 방법: 가장 널리 사용되고 편리한 Google API 기술 사용
2
,<?php //封装生成二维码图片的函数(方法) /* 利用google api生成二维码图片 $content:二维码内容参数 $size:生成二维码的尺寸,宽度和高度的值 $lev:可选参数,纠错等级 $margin:生成的二维码离边框的距离*/ function create_erweima($content, $size = '100', $lev = 'L', $margin= '0') { $content = urlencode($content); $image = '<img src="http://chart.apis.google.com/...'.$size.'x'.$size.'&cht=qr&chld='.$lev.'|'.$margin.'&chl='.$content.'" widht="'.$size.'" height="'.$size.'" />'; return $image; }
두 번째 방법:
다운로드하고 압축을 푼 다음 phpqrcode 폴더를 프로젝트에 복사(또는 복사)하세요.
/* 使用注意事项 先构建内容字符串 调用函数生成 */ //构建内容字符串 $content="微信公众平台:思维与逻辑rn公众号:siweiyuluoji"; //调用函数生成二维码图片 echo create_erweima($content); //把网址生成二维码; $url="http://jingyan.baidu.com/article/0964eca23c39ce8285f5363c.html"; $url.="rn"; $url.="http://jingyan.baidu.com/article/03b2f78c4d28ae5ea237ae15.html"; echo create_erweima($url); ?>
PHP에서 QR 코드 이미지를 생성하는 방법에 대한 더 많은 관련 기사를 보려면 PHP 중국어 웹사이트를 팔로우하세요!