php如何?產生二維碼以及下載的案例

來源:互聯網
上載者:User
這篇文章主要介紹了php二維碼生產以及下載實現代碼,具有一定的參考價值,感興趣的小夥伴們可以參考一下

本文執行個體為大家分享了php二維碼產生以及下載的具體代碼,供大家參考,具體內容如下


<?php //引入phpqrcode庫檔案define('IN_ECS', true); require(dirname(__FILE__) . '/includes/init.php');include('includes/phpqrcode.php'); // 二維碼資料$data = 'http://www.baidu.com';$filename = 'shopEwm/'.'baidu.png'; //down_file('baidu.png',BASE_PATH);setShopEwm($data,$filename); //產生二維碼圖片function setShopEwm($data,$filename){// 錯誤修正層級:L、M、Q、H   $errorCorrectionLevel = 'L';  // 點的大小:1到10  $matrixPointSize = 4;  //建立一個二維碼檔案  QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2);  //輸入二維碼到瀏覽器  //QRcode::png($data);}//下載二維碼圖片function down_file($file_name){  $file_sub_dir = str_replace('\\','/',realpath(dirname(__FILE__).'/'))."/shopEwm/";  //原因 php檔案函數,比較古老,需要對中文轉碼 gb2312  $file_name=iconv("utf-8","gb2312",$file_name);   //絕對路徑  $file_path=$file_sub_dir.$file_name;  //1.開啟檔案  if(!file_exists($file_path)){    echo "檔案不存在!";    return ;  }   $fp=fopen($file_path,"r");  //2.處理檔案  //擷取下載檔案的大小  $file_size=filesize($file_path);   /* if($file_size>30){   echo "<script language='javascript'>window.alert('過大')</script>";  return ;  } */   //返回的檔案  header("Content-type: application/octet-stream");  //按照位元組大小返回  header("Accept-Ranges: bytes");  //返迴文件大小  header("Accept-Length: $file_size");  //這裡用戶端的彈出對話方塊,對應的檔案名稱  header("Content-Disposition: attachment; filename=".$file_name);   //向用戶端回送資料   $buffer=1024;  //為了下載的安全,我們最好做一個檔案位元組讀取計數器  $file_count=0;  //這句話用於判斷檔案是否結束  while(!feof($fp) && ($file_size-$file_count>0) ){    $file_data=fread($fp,$buffer);    //統計讀了多少個位元組    $file_count+=$buffer;    //把部分資料回送給瀏覽器;    echo $file_data;  }   //關閉檔案  fclose($fp); }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.