后台 -- tp制作二维码(phpqrcode)

下载扩展

https://github.com/love1314-ball/phpqrcode

下载后放在vendor文件中就行了(名字要正确)

,可以将图片下载,这里我没有将图片下载下来,存在了项目中去了。

<?php

namespace app\index\controller;

use app\common\controller\IndexBase;
use think\Db;
use think\Request;


class Appointment extends IndexBase
{   
public function qrcode($order) {
	$request = Request::instance();
	header( 'Content-Type: text/html;charset=utf-8' );
	//引入二维码生成插件
	vendor( 'phpqrcode.phpqrcode' );
	// 生成的二维码所在目录+文件名
	$path = 'static/QRcode/';
	//生成的二维码所在目录
	if ( !file_exists( $path ) ) {
		mkdir( $path, 0700, true );
	}
	$time = time().'.png';
	//生成的二维码文件名
	$fileName = $path.$time;
	//1.拼装生成的二维码文件路径
	$data = 'http://www.tp5-appointment.com/index/mi/destroy?orderid='.$order;
	//2.生成二维码的数据( 扫码显示该数据 )
	$level = 'L';
	//3.纠错级别:L、M、Q、H
	$size = 10;
	//4.点的大小:1到10, 用于手机端4就可以了
	ob_end_clean();
	//清空缓冲区
	\QRcode::png( $data, $fileName, $level, $size );
	//生成二维码
	//文件名转码
	$file_name = iconv( 'utf-8', 'gb2312', $time );
	$file_path = $request->domain().'/'.$fileName;//插入数据库的字段
	return $file_path;
	// dump($file_path);
	// exit;
	//获取下载文件的大小
	// $file_size = filesize( $file_path );
	// $file_temp = fopen ( $file_path, 'r' );
	//返回的文件
	// header( 'Content-type:application/octet-stream' );
	// //按照字节大小返回
	// header( 'Accept-Ranges:bytes' );
	// //返回文件大小
	// header( 'Accept-Length:'.$file_size );
	// //这里客户端的弹出对话框
	// header( 'Content-Disposition:attachment;filename='.$time );
	// echo fread ( $file_temp, filesize ( $file_path ) );
	// fclose ( $file_temp );
	// exit ();
}
}
发布了105 篇原创文章 · 获赞 17 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/weixin_44944193/article/details/105357435
今日推荐