Download of .zip file runs a corrupted file php(.zip 文件的下载运行损坏的文件 php)
问题描述
我正在尝试强制下载受保护的 zip 文件(我不希望人们在没有先登录的情况下访问它.
I'm trying to force a download of a protected zip file (I don't want people to access it without logging in first.
我为 login
等创建了函数,但我遇到了下载文件损坏的问题.
I have the function created for the login
and such , but I'm running into a problem where the downloaded file is corrupting.
这是我的代码:
$file='../downloads/'.$filename;
header("Content-type: application/zip;
");
header("Content-Transfer-Encoding: Binary");
header("Content-length: ".filesize($file).";
");
header("Content-disposition: attachment; filename="".basename($file).""");
readfile("$file");
exit();
这是错误:无法打开文件:它似乎不是一个有效的存档.
否则文件下载正常,所以它一定是我在标题上做错了.
The file downloads fine otherwise, so it must be something I'm doing wrong with the headers.
有什么想法吗?
推荐答案
此问题可能有多种原因.也许您的文件没有找到或无法读取,因此文件的内容只是 PHP 错误消息.或者 HTTP 标头已经发送.或者你有一些额外的输出会破坏你的文件内容.
This issue can have several causes. Maybe your file is not found or it can not be read and thus the file’s content is just the PHP error message. Or the HTTP header is already sent. Or you have some additional output that then corrupts your file’s content.
尝试像这样在脚本中添加一些错误处理:
Try to add some error handling into your script like this:
$file='../downloads/'.$filename;
if (headers_sent()) {
echo 'HTTP header already sent';
} else {
if (!is_file($file)) {
header($_SERVER['SERVER_PROTOCOL'].' 404 Not Found');
echo 'File not found';
} else if (!is_readable($file)) {
header($_SERVER['SERVER_PROTOCOL'].' 403 Forbidden');
echo 'File not readable';
} else {
header($_SERVER['SERVER_PROTOCOL'].' 200 OK');
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: Binary");
header("Content-Length: ".filesize($file));
header("Content-Disposition: attachment; filename="".basename($file).""");
readfile($file);
exit;
}
}
这篇关于.zip 文件的下载运行损坏的文件 php的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.zip 文件的下载运行损坏的文件 php
基础教程推荐
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01