小编Ale*_*lex的帖子

PHP Force下载导致0字节文件

我正在尝试使用PHP从我的Web服务器强制下载文件.我不是PHP的专家,但我似乎无法解决大小为0字节的文件下载问题.

码:

$filename = "FILENAME...";

header("Content-type: $type");
header("Content-Disposition: attachment;filename=$filename");
header("Content-Transfer-Encoding: binary");
header('Pragma: no-cache');
header('Expires: 0');
set_time_limit(0);
readfile($file);
Run Code Online (Sandbox Code Playgroud)

有人可以帮忙吗?谢谢.

php download

7
推荐指数
2
解决办法
2万
查看次数

标签 统计

download ×1

php ×1