>  기사  >  php教程  >  生成二维码

生成二维码

WBOY
WBOY원래의
2016-06-06 19:35:111145검색

无详细内容 无 ?phpdefine('BBSURL','http://bbs.cnfol.com/forum.php?mod=viewthreadtid=');define('QRCODEIMG','/home/www/dz_x2/data/qrcode/');include "./phpqrcode/phpqrcode.php";//引入PHP QR库文件$tid = isset($_GET['tid'])?$_GET['tid']:'';$qrco

<?php
define('BBSURL','http://bbs.cnfol.com/forum.php?mod=viewthread&tid=');
define('QRCODEIMG','/home/www/dz_x2/data/qrcode/');
include "./phpqrcode/phpqrcode.php";//引入PHP QR库文件
$tid = isset($_GET['tid'])?$_GET['tid']:'';
$qrcode_img = QRCODEIMG.$tid.'.png';
if(file_exists($qrcode_img))
{	
	header("content-type:image/png");
	$im = imagecreatefrompng($qrcode_img);
	imagepng($im);
	exit();
}else{
	$value = BBSURL.$tid;
	$errorCorrectionLevel = "L";
	$matrixPointSize = "4"; 
	QRcode::png($value, $qrcode_img, $errorCorrectionLevel, $matrixPointSize);
	QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize);
	exit;
}



?>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.