php代码实现文件下载,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代码

$(function(){

$('.downLoad').click(function(){

var path = $(this).attr('path');

$('#iframe').attr('src',"php文件路径?path="+path);

})

})

把上面的代码,分别放到你的程序中执行就可以了

以上就是php实现当前页面点击下载文件的实例代码 的内容,更多相关内容请关注PHP中文网(www.gxlcms.com)!

本条技术文章来源于互联网,如果无意侵犯您的权益请点击此处反馈版权投诉

本文系统来源:php中文网

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值