php使用qr生成二维码的示例分享
程序员文章站
2022-06-14 12:08:32
复制代码 代码如下:
<?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).'" />';
?>
复制代码 代码如下:
<?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).'" />';
?>