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);
?>- 随机文章
- 热门文章
- 热评文章
- html网页 swf播放器使用代码
- Font Awesome 一套绝佳的图标字体库和CSS框架(奥森图标)
- 安装包制作工具 SetupFactory使用2 API清单
- C#修改图片分辨率
- ESP8266在Eclipse下设置编译模式(有boot和无boot)
- 单片机时钟周期,机器周期,指令周期的区别
- 电脑微信双开,多开
- c# 全局鼠标事件

