0

所以我又来了:)

我试图让下载查询工作。问题是查询不会下载上传的文件,它只是创建一个 dowload.php 文件并将其下载到标准文件夹,我什至无法选择将其保存在我想要的任何位置。:(

任何想法可能是什么问题?

下载.php

if (isset($_GET['file_id'])) {
$file_id = (int)$_GET['file_id'];
$file = mysql_query("SELECT `file_name` FROM `files` WHERE `file_id` = {$file_id}");

if (mysql_num_rows($file) != 1) {
echo 'file ID is invalid';
}
else {
$row = mysql_fetch_assoc($file);


if (file_exists($path)){
$path = "core/files/{$row['file_name']}";
header('content-Type: application/octetstream');
header('Content-Type: application/octet-stream');
header('Content-Description: File Transfer');
header("Content-Description: attachment; filename=\"{$row['file_name']}\"");
header('Content-Length: ' . filesize($path));
readfile($path);
}
}
}
?>
4

1 回答 1

3
header("Content-Disposition: attachment; filename=\"{$row['file_name']}\"");

也摆脱关闭 ?> 因为它可以在文件末尾添加额外的空格。它不是必需的。

于 2012-05-13T00:11:04.230 回答