gpt4 book ai didi

PHP 文件下载问题 - 无法读取

转载 作者:行者123 更新时间:2023-12-04 04:51:53 25 4
gpt4 key购买 nike

我有以下自动下载文件的代码
单击提交按钮,一切似乎都正常;
文件以正确的格式、正确的大小、正确的名称下载,但是当我
想打开它,我收到一个错误,无法读取文件,可能是什么原因
问题?

$file=mysql_fetch_assoc($sel);
$file=$file['downloadlink'];
header('Content-Type: "application/octet-stream"');
header("Content-Transfer-Encoding: Binary");
header("Content-length: ".filesize($file));
header("Content-disposition: attachment; filename=\"".basename($file)."\"");
readfile($file);

最佳答案

您可以尝试从 readfile() 调整此功能评论:

function DownloadFile($file) { // $file = include path
if(file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
}

关于PHP 文件下载问题 - 无法读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17319145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com