Rumah > Artikel > pembangunan bahagian belakang > php网址转换生成二维码
这篇文章介绍的内容是关于php网址转换生成二维码 ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
1、使用php类库PHP QR Code;官网下载:http://phpqrcode.sourceforge.net
2、下载好解压,然后将phpqrcode文件夹拷贝(或复制)到项目中去;
3、然后在控制器中调用该类生成二维码
public function erweima(){ $id=I('get.phone'); vendor("phpqrcode.phpqrcode"); $code = new \QRcode(); // include ( APP_PATH . 'Home/Conf/phpqrcode/phpqrcode.php' );//定义纠错级别 $errorLevel = "L";//定义生成图片宽度和高度;默认为3 $size = "4";//定义生成内容 $content='http://' . I( 'server.HTTP_HOST' ) . U( 'Login/register' ) . '?phone='.$id; //调用QRcode类的静态方法png生成二维码图片// $code->png($content, false, $errorLevel, $size);//生成网址类型 $url="http://jingyan.baidu.com/article/48a42057bff0d2a925250464.html"; $url.="rn"; $url.="http://jingyan.baidu.com/article/acf728fd22fae8f8e510a3d6.html"; $url.="rn"; $url.="http://jingyan.baidu.com/article/92255446953d53851648f412.html"; print_r($code->png($url, false, $errorLevel, $size)); }
相关推荐:
Atas ialah kandungan terperinci php网址转换生成二维码 . Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!