首頁  >  文章  >  後端開發  >  php實作目前頁面點選下載檔案的實例

php實作目前頁面點選下載檔案的實例

墨辰丷
墨辰丷原創
2018-05-30 17:42:151948瀏覽

本篇文章主要介紹php實作目前頁點選下載檔的實例,有興趣的朋友參考下,希望對大家有幫助。

php控制器中程式碼

#
public function downFile($path = ''){
    if(!$path) header("Location: /");
    download($path);
  }

download檔案下載函數程式碼

function download($file_url,$new_name=''){ 
    if(!isset($file_url)||trim($file_url)==''){ 
      echo '500'; 
    } 
    if(!file_exists($file_url)){ //检查文件是否存在 
      echo '404'; 
    } 
    $file_name=basename($file_url); 
    $file_type=explode('.',$file_url); 
    $file_type=$file_type[count($file_type)-1]; 
    $file_name=trim($new_name=='')?$file_name:urlencode($new_name); 
    $file_type=fopen($file_url,'r'); //打开文件 
    //输入文件标签 
    header("Content-type: application/octet-stream"); 
    header("Accept-Ranges: bytes"); 
    header("Accept-Length: ".filesize($file_url)); 
    header("Content-Disposition: attachment; filename=".$file_name); 
    //输出文件内容 
    echo fread($file_type,filesize($file_url)); 
    fclose($file_type);
}

html程式碼





#
<iframe id="iframe" src="" style="display: none;"></iframe>
$(function(){
      $(&#39;.downLoad&#39;).click(function(){
        var path = $(this).attr(&#39;path&#39;);
        $(&#39;#iframe&#39;).attr(&#39;src&#39;,"php文件路径?path="+path);
      })
    })

把上面的程式碼,分別放到你的程式中執行就可以了

以上就是本文的全部內容,希望對大家的學習有所幫助。

相關推薦:

######PHP怎麼取得字元流中第一個不重複字元########### ####PHP實現順時針列印矩陣及螺旋矩陣的方法################PHP判斷二元樹是否對稱的方法#################PHP判斷二元樹是否對稱的方法############# ##PHP學習:預先定義變數詳情############################

以上是php實作目前頁面點選下載檔案的實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn