首页 > 代码库 > PHP生成QRCode二维码
PHP生成QRCode二维码
<?php //引入 phpqrcode 类库 //phpqrcode下载地址:https://github.com/t0k4rt/phpqrcode require_once "phpqrcode/qrlib.php"; //第一种(缺省下在网页中生成二维码) //调用QRCode类下的png静态方法 QRcode::png("this is a qrcode"); $content = "this is a qrcode"; //内容 $filename = time() . ".png"; //文件名 $level = QR_ECLEVEL_L; //容错级别 $size = 10; //尺寸 $padding = 3; //边距 //第二种(自定义下在网页中生成二维码) QRcode::png($content, false, $level, $size, $padding, true); //第三种(自定义下将生成的二维码保存为图片文件) QRcode::png($content, $filename, $level, $size, $padding, true); /*容错级别 QR_ECLEVEL_L 为常量 0 约可纠错7%的数据码字 QR_ECLEVEL_M 为常量 1 约可纠错15%的数据码字 QR_ECLEVEL_Q 为常量 2 约可纠错25%的数据码字 QR_ECLEVEL_H 为常量 3 约可纠错30%的数据码字 */ ?>
本文出自 “tong707的博客” 博客,请务必保留此出处http://tong707.blog.51cto.com/12527988/1955424
PHP生成QRCode二维码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。