Heim  >  Artikel  >  Backend-Entwicklung  >  php生成QRcode实例,phpqrcode实例_PHP教程

php生成QRcode实例,phpqrcode实例_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:18:30838Durchsuche

php生成QRcode实例,phpqrcode实例

本文实例讲述了php生成QRcode实例。是一个非常有用的功能。分享给大家供大家参考。具体如下:

实例演示效果如下图所示:

主要功能代码如下:

<&#63;php 
ini_set('display_errors', 'on'); 
$PNG_TEMP_DIR = dirname(__FILE__).DIRECTORY_SEPARATOR.'temp'.DIRECTORY_SEPARATOR; 
$PNG_WEB_DIR = 'temp/'; 
 
include "qrlib.php";  // QRcode lib 
 
$data = 'demo qrcode'; // data 
$ecc = 'H'; // L-smallest, M, Q, H-best 
$size = 10; // 1-50 
 
$filename = $PNG_TEMP_DIR.'qrcode_'.time().'.png'; 
QRcode::png($data, $filename, $ecc, $size, 2); 
chmod($filename, 0777); 
echo '<img  src="'.$PNG_WEB_DIR.basename($filename).'" / alt="php生成QRcode实例,phpqrcode实例_PHP教程" >'; 
&#63;>  

PHP QRcode Lib点击此处本站下载。

希望本文所述对大家的php程序设计有所帮助。

用phpqrcode生成的二维码,怎让输出结果换行

如PHP里 一样 用\r分割
 

php生成二维码的几种方式

.altmi.com';//生成的文件名$filename=$errorCorrectionLevel.'|'.$matrixPointSize.'.png';//纠错级别:L、M、Q、H$errorCorrectionLevel='L';//点的大小:1到10$matrixPointSize=4;QRcode::png($data,$filename,$errorCorrectionLevel,$matrixPointSize,2);官方给出的用例:  

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/882908.htmlTechArticlephp生成QRcode实例,phpqrcode实例 本文实例讲述了php生成QRcode实例。是一个非常有用的功能。分享给大家供大家参考。具体如下: 实例演示效...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn