• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

PHP生成QRCode二维码

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

php生成QRCode二维码示例

<?php
//引入 phpqrcode 类库
//phpqrcode下载地址:https://github.com/t0k4rt/phpqrcode
//或从博客园下载:https://files.cnblogs.com/files/connect/phpqrcode-master.zip
require_once "phpqrcode/qrlib.php";

// 初始化二维码图片的参数
$content = "this is a qrcode";		//内容
$filename = time() . ".png";		//文件名
$level = QR_ECLEVEL_L;				//容错级别
$size = 10;							//尺寸
$padding = 3;						//边距

//第一种(缺省下在网页中生成二维码),调用QRCode类下的png静态方法
QRcode::png($content);

//第二种(自定义下在网页中生成二维码)
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%的数据码字
*/
?>

 

phpqrcode类库下载

 

本文链接:https://www.cnblogs.com/connect/p/php-qrcode-image.html

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap