国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

php實現當前頁面點擊下載文件的簡單方法

2024-05-04 23:50:02
字體:
來源:轉載
供稿:網友

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(){      $('.downLoad').click(function(){        var path = $(this).attr('path');        $('#iframe').attr('src',"php文件路徑?path="+path);      })    })

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

以上就是小編為大家帶來的php實現當前頁面點擊下載文件的簡單方法的全部內容了,希望對大家有所幫助,多多支持VeVb武林網~


注:相關教程知識閱讀請移步到PHP教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 泾川县| 东乌| 娱乐| 杂多县| 平邑县| 兖州市| 鹿泉市| 壤塘县| 浮山县| 耒阳市| 大田县| 鹤峰县| 泉州市| 阿巴嘎旗| 辽阳市| 西乡县| 汨罗市| 姚安县| 万盛区| 武强县| 龙州县| 巨鹿县| 南阳市| 六盘水市| 乌兰察布市| 米脂县| 雷山县| 江孜县| 台南市| 乌鲁木齐市| 南京市| 昭觉县| 遂川县| 杭锦旗| 邮箱| 凌云县| 盐城市| 新田县| 苗栗县| 修文县| 偃师市|