可能重复:
使用 php
强制下载文件强制下载不同的文件
我试图让用户从我的网站下载图片。我看过很多关于它的文章,我试图使用php 文档中的readfile。但我似乎无法让它工作。
这是我尝试设置以开始下载的按钮的代码:
<!-- download image button -->
<form class="grid_12" style="text-align: center;" action="../includes/download.php" method="post">
<input type="hidden" name="id" value="<?php echo $photo->id; ?>" />
<input type="hidden" name="img" value="<?php echo $photo->filename; ?>" />
<?php if(isset($_GET['cat'])){?>
<input type="hidden" name="cat" value="<?php echo $_GET['cat']; ?>" />
<?php } ?>
<div id="download"><input type="submit" name="submit" value="Download Photo" /></div>
</form>
这是我在 download.php 文件中设置的代码(redirect_to 只是一个调用 header(Location: var) 的函数,其中 var 是您传入的内容。
<?php
require_once('initialize.php');
?>
<?php
header("Content-type: application/force-download; filename=".$_POST['img']);
// Force download of image file specified in URL query string and which
// is in the same directory as this script:
if(!empty($_POST['img']))
{
$file = $_POST['img'];
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');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
$addy = "../public/photo.php?id=".$_POST['id'];
if(isset($_POST['cat'])){
$addy .= "&cat=".$_POST['cat'];
}
redirect_to($addy);
}
header("HTTP/1.0 404 Not Found");
?>
我在帖子中发送的隐藏变量主要用于重定向,以便在下载开始后将用户带回他们下载的页面。在我的本地主机上,我被重定向到单击下载按钮的页面。在我的服务器上,我只是被发送到一个注册为 download.php 的空白页面。我认为这可能与输出缓冲有关,因为我得到一个空白页。这通常意味着在我调用 header() 函数之前有某种输出。
如果有人能给我一些关于我在这里做错了什么的见解,我将不胜感激,感谢您的阅读。
-艾伦