這篇文章主要介紹了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); }