php下载文件

$size=filesize($file);
$file=fopen($file, "r");
ob_start();
header("Content-type: application/octet-stream");
header("Accept-Ranges: bytes");
header("Accept-Length: $size");
header("Content-Disposition: attachment; filename=$filename");
echo fread($file,$size);
fclose($file);

原文地址:https://www.cnblogs.com/freelyflying/p/5733959.html