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#实现FTP上传
- kali2.0安装完成后全是乱码解决办法
- labVIEW调用C# dll 步骤
- UDP穿透NAT的原理与实现(UDP“打洞”原理)
- STM32 中断向量表的位置 、重定向
- 物联网 WIFI 一键配置原理(smartconfig) ESP8266/QCA4004
- 乐高EV3与单片机蓝牙通讯
- c# 全局鼠标事件