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);
?>- 随机文章
- 热门文章
- 热评文章
- c#保存textbox中的字符串到txt文件中
- C# 非独占延时函数 非Sleep
- 安装包制作工具 SetupFactory使用2 API清单
- 永恒之蓝病毒是什么 怎么防范ONION勒索软件
- Linux下python2.7安装pip
- ESP8266在Eclipse下设置编译模式(有boot和无boot)
- 物联网 WIFI 一键配置原理(smartconfig) ESP8266/QCA4004
- 内存堆和栈的区别

