ThinkPHP 二维码生成

Posted Sorr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP 二维码生成相关的知识,希望对你有一定的参考价值。

请求获取并展示二维码

    <img src="<?php echo U(‘createCode?zsnumber=‘.$time.$kcname[‘id‘].$stuInfo[‘id‘].‘&stuName=‘.$stuInfo[‘stu_name‘].‘&sfid=‘.$stuInfo[‘sfid‘].‘&kcName=‘.$kcname[‘classnew‘].‘&kcid=‘.$kcid.‘&stuid=‘.$stuInfo[‘id‘].‘‘);?>" alt="二维码" class="code">

 

创建二维码

public function createCode(){
        header(‘Content-Type: image/png‘);
        Vendor(‘phpqrcode.phpqrcode‘);
        ob_clean();   // 这里一开始我没有加 显示正常  后来就一直显示不了了 之后加上就好了 网上也有几种说法,但是我认为是缓冲区的问题 

$value = ‘http://XXXXXX/Home/mystudy/showcode?zsnumber=‘.$_GET[‘zsnumber‘].‘&stuName=‘.$_GET[‘stuName‘].‘&sfid=‘.$_GET[‘sfid‘].‘&kcName=‘.
$_GET[‘kcName‘].‘&kcid=‘.$_GET[‘kcid‘].‘&stuid=‘.$_GET[‘stuid‘].‘‘; QRcode::png($value,false, ‘H‘, 8, 2, false); }

 

二维码链接信息处理

public function showcode(){
    dump($_GET); 获得二维码中信息
   $temp[‘kcid‘] =$_GET[‘kcid‘]; 
  $temp[‘userid‘] = $_GET[‘stuid‘];
  $info = D(‘表名‘)->where($temp)->find();
 
$this->assign(‘info‘,$info);
  $this->display();
}

 








以上是关于ThinkPHP 二维码生成的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp 3.2 生成二维码 在本地测试没问题 放到服务器上就报错了

Thinkphp3.2版本结合phpqrcode生成二维码并提供下载

thinkphp5 生成二维码在模板中显示

thinkphp整合系列之phpqrcode生成二维码

thinkphp整合系列之phpqrcode生成二维码

thinkphp整合系列之phpqrcode生成二维码