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).'" />';
?>
复制代码 代码如下:
<?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).'" />';
?>
上一篇: python正则表达式re模块详细介绍
下一篇: PHP代码实现爬虫记录——超管用