찾다

 >  Q&A  >  본문

用php qrcode生成二维码,怎么输出?

   $data = 'www.baidu.com'; 
    include 'phpqrcode.php';    $QRcode = new \QRcode();
    ob_start();    $QRcode->png($data);    $imageString = base64_encode(ob_get_contents());
    ob_end_clean();    echo $imageString;

   为什么上面的代码没有输出,要在php里直接生成二维码转base给前端?

phpcn_u275phpcn_u2752871일 전1379

모든 응답(2)나는 대답할 것이다

  • 数据分析师

    数据分析师2017-10-01 01:04:48

    PHP qrcode를 사용하여 QR 코드를 생성하고, 어떻게 출력하나요? -PHP 중국어 사이트 Q&A - php qrcode를 사용하여 QR코드를 생성하고, 어떻게 출력하나요? -PHP 중국어 홈페이지 Q&A

    꼭 보고 배워보세요.

    회신하다
    0
  • 阿神

    阿神2017-03-21 17:23:35

    首先你要知道,输出二维码是个图片,你要设置下header吧

    header('Content-type: image/jpeg');
    header('Content-Disposition: attachment; 
    filename=download_name.jpg');readfile($yourFilePath);


    회신하다
    0
  • 취소회신하다