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# 串口发送接收数据
- php接收post乱码解决
- PHP文件操作之,插入某行,删除某行,获取行号
- C#图像处理(各种旋转、改变大小、柔化、锐化、雾化、底片、浮雕、黑白、滤镜效果)
- STM32 中断向量表的位置 、重定向
- 物联网 WIFI 一键配置原理(smartconfig) ESP8266/QCA4004
- HTTP请求头详解
- C#实现邮件发送的功能

