第二种方法使用php类库PHP QR Code;下载地址:http://pan.baidu.com/s/1eQrFVUi ;或者在官网下载:http://phpqrcode.sourceforge.net
2
下载好解压,然后将phpqrcode文件夹拷贝(或复制)到项目中去;
<?php
//引入核心库文件
include "phpqrcode/phpqrcode.php";
//定义纠错级别
$errorLevel = "L";
//定义生成图片宽度和高度;默认为3
$size = "4";
//定义生成内容
$content="微信公众平台:思维与逻辑;公众号:siweiyuluoji";
//调用QRcode类的静态方法png生成二维码图片//
QRcode::png($content, false, $errorLevel, $size);
//生成网址类型
$url="http://jingyan.baidu.com/article/48a42057bff0d2a925250464.html";
$url.="\r\n";
$url.="http://jingyan.baidu.com/article/acf728fd22fae8f8e510a3d6.html";
$url.="\r\n";
$url.="http://jingyan.baidu.com/article/92255446953d53851648f412.html";
QRcode::png($url, false, $errorLevel, $size);
//示例代码下载地址:http://pan.baidu.com/s/1kTyruRl
时间: 2024-10-28 15:54:04