php生成二维码

来源:互联网 发布:手机能注册淘宝邮箱吗 编辑:程序博客网 时间:2024/06/15 11:37

首先下载phpqrcode文件库下载地址:http://sourceforge.net/projects/phpqrcode/

php代码

<?php

//引用核心文件库

include "phpqrcode/phpqrcode.php";


//调用函数 生成二维码
 QRcode::png( "url");  


//建立函数
function png($text,$outfile=false,$level=QR_ECLEVEL_L,$size=5,$margin=4,$saveandprint=false){


$enc= QRencode::factory($level,$size,$margin);


return


$enc->encodePNG($text,$outfile,$saveandprint=false);


}

?>