$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);
相关文章
- 11-20Python 3 读写文件的简单方法!
- 11-20Vs2013 头文件注释
- 11-20[powershell] insert current time to file / Windows下插入当前时间到指定文件
- 11-20mount – FreeBSD jails – Nginx,PHP-FPM,WordPress – jails之间共享文件夹(只读)
- 11-20FreeBSD:“打开的文件过多”,但应该可以打开另外160,000个文件
- 11-20python-kqueue跟踪文件更改-处理先前事件时丢失事件的机会是什么?
- 11-20命令行 – 将文件夹及其内容复制到所有Nginx vhosts主机
- 11-20Python克服了Windows 255路径文件名限制并将目录归档
- 11-20finder – macOS如何在ZIP文件中存储Unix文件权限
- 11-20404 Not Found [IP: 91.189.91.39 80] 可能存在的问题根源 :请求的文件本身就不存在啊 !!