国产探花免费观看_亚洲丰满少妇自慰呻吟_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教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 肥城市| 神农架林区| 河东区| 界首市| 吉安县| 安多县| 肃北| 高安市| 桦甸市| 囊谦县| 玉环县| 元阳县| 远安县| 宁武县| 扎兰屯市| 白城市| 连江县| 临泉县| 林甸县| 开原市| 土默特左旗| 舒兰市| 广水市| 常熟市| 富蕴县| 崇阳县| 岗巴县| 增城市| 定南县| 海阳市| 西和县| 玉门市| 镶黄旗| 永丰县| 桦川县| 赤城县| 理塘县| 庄河市| 汕尾市| 清苑县| 济南市|