欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php使用qr生成二维码的示例分享

程序员文章站 2023-11-16 12:56:40
复制代码 代码如下:

复制代码 代码如下:

<?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 = '//www.jb51.net'; // 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).'" />'; 
?>