例子:thinkphp引入生成二维码的类。。。
关于这个引入类有两种方法。。第一种如下;
// 首页
public function index(){
include(WEB_ROOT . 'data/phpqrcode/phpqrcode.php');
// 生成的文件名
//$filename = $errorCorrectionLevel.'|'.$matrixPointSize.'.png';
$fileName = "sfds.png";
// 纠错级别:L、M、Q、H
$errorCorrectionLevel = 'L';
// 点的大小:1到10
$matrixPointSize = 4;
$data = "aaa";
$ms = \data\phpqrcode\QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2);
header("Content-type:image/png;");
var_dump($ms);
exit;
}
第二种情况如下:
public function index(){
Vendor("phpqrcode.phpqrcode");
// 生成的文件名
//$filename = $errorCorrectionLevel.'|'.$matrixPointSize.'.png';
$fileName = "sfds.png";
// 纠错级别:L、M、Q、H
$errorCorrectionLevel = 'L';
// 点的大小:1到10
$matrixPointSize = 4;
//$QRcode = new QRcode();
$data = "aaa";
$ms = \QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2); \
header("Content-type:image/png;");
var_dump($ms);
exit;
$this->display();
}