介绍《PHP生成二维码的两种方法》开发教程,希望对您有用。
《PHP生成二维码的两种方法》要点:
本文介绍了PHP生成二维码的两种方法,希望对您有用。如果有疑问,可以联系我们。
1、采用GOOGLE API:
不推荐这种方法,因为网络原因执行效率不稳定。
调用方法:
$urlToEncode="name:刘昕明,phone:18792448443";
generateQRfromGoogle($urlToEncode);
函数代码:
/**
* google api 二维码生成【QRcode可以存储最多4296个字母数字类型的任意文本,具体可以查看二维码数据格式】
* @param string $chl 二维码包含的信息,可以是数字、字符、二进制信息、汉字。不能混合数据类型,数据必须经过UTF-8 URL-encoded.如果需要传递的信息超过2K个字节,请使用POST方式
* @param int $widhtHeight 生成二维码的尺寸设置
* @param string $EC_level 可选纠错级别,QR码支持四个等级纠错,用来恢复丢失的、读错的、模糊的、数据。
* L-默认:可以识别已损失的7%的数据
* M-可以识别已损失15%的数据
* Q-可以识别已损失25%的数据
* H-可以识别已损失30%的数据
* @param int $margin 生成的二维码离图片边框的距离
*/
function generateQRfromGoogle($chl,$widhtHeight ='150',$EC_level='L',$margin='0')
{
$chl = urlencode($chl);
echo '<img src="http://chart.apis.google.com/chart?chs='.$widhtHeight.'x'.$widhtHeight.'&cht=qr&chld='.$EC_level.'|'.$margin.'&chl='.$chl.'" alt="QR code" widhtHeight="'.$widhtHeight.'" widhtHeight="'.$widhtHeight.'"/>';
}
也可参考本文附文的一个调用示例类。
2、生成二维码的PHP类库:
推荐TCPDF类包中附有2dbarcodes.PHP类。可以直接使用。
其它类库有:
PHP类库PHP QR Code
PHP QR Code is open source (LGPL) library for generating QR Code,
2-dimensional barcode. Based on libqrencode C library,
provides API for creating QR Code barcode images (PNG,JPEG thanks to GD2).
Implemented purely in PHP,with no external dependencies (except GD2 if needed).
地址:http://PHPqrcode.sourceforge.net/
下载:http://sourceforge.net/projects/PHPqrcode/
3.libqrencode
地址:http://fukuchi.org/works/qrencode/index.en.html
PHP支持请参考:http://hirokawa.netflowers.jp/entry/4900/
4.QRcode Perl CGI & PHP scripts
地址:http://www.swetake.com/qr/qr_cgi.html