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);
?>- 随机文章
- 热门文章
- 热评文章

