我正在使用这个小推送器php文件下载'exe'文件供用户在填写表单时保存。
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);
使用此方法,没有链接到联机$文件位置供有人关注,但由于某种原因,我无法在代码执行之后或之前显示感谢页。
我已尝试过标题(“位置:$ thankyouurl”);紧接着上面的代码,但没有显示任何东西,我已经尝试在运行上面的代码之前回显感谢页面的html源代码,但这导致exe文件被下载到网页实际上崩溃了浏览器。
任何建议???
答案 0 :(得分:14)
将用户直接指向显示感谢信息的静态页面。然后,使用JavaScript将window.location
设置为下载脚本。
如果您的下载页面标题设置正确,浏览器将开始下载该文件,而您的用户正在阅读您的感谢信息。
如果用户禁用了JavaScript,请务必显示直接下载链接。
<强>的index.php 强>
<a href="thankyou.php">Click here to download.</a>
<强> thankyou.php 强>
<html>
<head>
<script type="text/javascript">
function startDownload() {
window.location = "/download.php";
}
</script>
</head>
<body onload="startDownload();">
<h1>Thank you!</h1>
<p>Your download will start in a moment. If it doesn't, use this <a href="download.php">direct link.</a></p>
</body>
<强>的download.php 强>
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);
为了将数据从index.php
传递到下载脚本,您可以使用GET
个变量。 thankyou.php
页面的链接将变为thankyou.php?download=12
,其中下载是您获取正确文件的ID。然后,您可以通过在标记中回显它来将该变量传递到下载脚本:
<强>的index.php 强>
<a href="thankyou.php?download=12">Click here to download.</a>
<强> thankyou.php 强>
<html>
<head>
<script type="text/javascript">
function startDownload() {
window.location = "/download.php?file=<?=$_GET['download']?>";
}
</script>
</head>
<body onload="startDownload();">
<h1>Thank you!</h1>
<p>Your download will start in a moment. If it doesn't, use this <a href="download.php?file=<?=$_GET['download']?>">direct link.</a></p>
</body>
然后,您可以获取下载脚本中的值,并以您喜欢的方式处理它。
答案 1 :(得分:0)
对此不太确定,会不会......
header('Location: thanks_page.php');
......不行,。如果放在readfile()之后?真的不确定,只有我的想法!
答案 2 :(得分:0)
您可以使用“windows.open('url to download file')打开”下载页面“”
示例:
<script type="text/javascript">
function openDownload()
{
window.open( "http://domain.com/download.php?file=file.pdf" );
window.location = "http://domain.com/thanks.php";
}
</script>
打开一个直接下载文件的窗口,当您选择保存或取消时,它会自动关闭,然后,“父”窗口会重定向到感谢页面。
答案 3 :(得分:0)
使用您的原始方法,将header('location: thank-you-page.php');
添加到结尾以及退出,如下所示:
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);
header('location: thank-you-page.php');
exit;