网站地图    收藏   

主页 > 后端 > php资料库 >

PHP生成二维码实现教程及代码_自学php网

来源:自学PHP网    时间:2014-12-04 22:12 作者: 阅读:

[导读] php类库PHP QR Code 二维码 : //使用用例?php include('./phpqrcode/phpqrcode.php'); // 二维码数据 $data = 'http://gz.altmi.com'; // 生成的文件名 $filename = $errorCorrectionLevel.'|'.$matrixPointSize.'.png'; // 纠错级别:...

 php类库PHP QR Code

二维码
二维码

//使用用例
<?php 
   include('./phpqrcode/phpqrcode.php'); 
   // 二维码数据 
   $data = 'http://gz.altmi.com'; 
   // 生成的文件名 
   $filename = $errorCorrectionLevel.'|'.$matrixPointSize.'.png'; 
   // 纠错级别:L、M、Q、H 
   $errorCorrectionLevel = 'L';  
   // 点的大小:1到10 
   $matrixPointSize = 4;  
   QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2);

 

//官方给出的用例:
<?php 
# include这两个文件之一: 
/* 
qrlib.php for full version (also you have to provide all library files  
form package plus cache dir) 
  
OR phpqrcode.php for merged version (only one file,  
but slower and less accurate code because disabled cache 
and quicker masking configured) 
*/ 
# 两句话解释: 
# 包含qrlib.php的话需要同其它文件放到一起:文件、文件夹。 
# phpqrcode.php是合并后版本,只需要包含这个文件,但生成的图片速度慢而且不太准确 
# 以下给出两种用法: 
  
# 创建一个二维码文件 
QRcode::png('code data text', 'filename.png'); 
// creates file 
  
# 生成图片到浏览器 
QRcode::png('some othertext 1234'); 
// creates code image and outputs it directly into browser

地址:http://phpqrcode.sourceforge.net/

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

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论