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);

posted @ 2016-08-03 18:15  自由灬飞翔丨  阅读(116)  评论(0编辑  收藏  举报