php做下载连接/下载功能
<?php $vison=$_GET['vison']; $name=$_GET['name']; $path=dirname(__FILE__).'/'.$vison.'/'.$name; function downfile($fileurl,$filename) { ob_start(); header( "Content-type: application/octet-stream "); header( "Accept-Ranges: bytes "); header( "Content-Disposition: attachment; filename= {$filename}"); $size=readfile($fileurl); header( "Content-length: " .$size); } downfile($path,$name); ?>
- 随机文章
- 热门文章
- 热评文章
- 微信公众平台API接口扩展包
- C#图片处理示例(裁剪,缩放,清晰度,水印)
- C# 生成图片缩略图
- C#中的MessageBox消息对话框
- Linux下python2.7安装pip
- ESP8266在Eclipse下设置编译模式(有boot和无boot)
- 内存堆和栈的区别
- C#实现邮件发送的功能