1、第一种方法:利用使用最广泛,最方便的Google api技术实现;
2、<?php//1.封装生成二维码图片的函数(方法)/***利用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/chart?chs='.$size.'x'.$size.'&cht=qr&chld='.$lev.'|'.$margin.'&chl='.$content.'" widht="'.$size.'" height="'.$size.'" />'; return $image;}
3、/** 使用注意事项* 1.先构建内容字符串* 2.调用函数生成*///构建内容字符串$content="微信公众平台:思维与逻辑\r\n公众号:siweiyuluoji";//调用函数生成二维码图片echo create_erweima($content);//纯文字型生成的图片如下图所示:
4、//把网址生成二维码;$url="http://jingyan.baidu.com/article/0964髫潋啜缅eca23c39ce8285f5363c.html";$url.="\r\n";$url.="http://jingyan.baidu.com/article/03b2f78c4d28ae5ea237ae15.html";echo create_erweima($url);?>
5、上述示例代码下载地址:http://pan.baidu.com/s/1i3fyAWl