Re: php生成二维码的方法总结
所属分类:PHP工具与代码
  使用php QR Code类库生成二维码

注意使用该类库必须首先下载类库包,下载地址:

地址:http://phpqrcode.sourceforge.net/
下载:http://sourceforge.net/projects/phpqrcode/

下载下来的压缩包里面有很多示例,可以自行研究,下面给出一个简单的使用案例(具体参数的意思和上面大同小异)
[code]<?php
include "./phpqrcode.php";
$data='版权所有:http://www.phpernote.com/';
$errorCorrectionLevel="L";
$matrixPointSize="4";
QRcode::png($data,false,$errorCorrectionLevel,$matrixPointSize);[/code]