1

我正在使用此 PHP 代码开始下载,但希望在启动下载之前/之后显示“HTML”,但以下代码会导致空白页面:

输出html的函数:

function writeMsg($msg)
{
    echo "<html><body><h2>$msg</h2></body></html>";
}

调用使用:

if(file_exists ($fullpath)) {
//Start Download
ob_start();
writeMsg('Download Started');
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$fname\"");
header("Content-Transfer-Encoding: binary");
header('Connection: close');
ob_end_flush();
exit();
}
4

3 回答 3

2

这是不可能的,因为您将标头类型设置为 application/octet-stream 这意味着它是必须使用应用程序打开的二进制文件。

相反,您可以显示文本,然后使用 HTML 或 Javascript 重定向用户

在 HTML 中,您可以使用以下内容

<META http-equiv="refresh" content="NUMBER_OF_SECONDS_HERE; URL=DOWNLOAD_LINK_HERE">
于 2013-09-10T15:52:19.167 回答
1

尝试这个。如果不显示内联文本,您可能需要一个模式来显示加载文本。

HTML MARK UP 
<a href="#" id="d1">Download Now</a>

// Jquery
$(function(){
 $('#d1').click(function(){

   $(this).text('Download Started...');

   setTimeout(function(){

        window.location.replace('http://domain.com/download.php');

   },2000);

   return false;

 })
});
于 2013-09-10T16:31:07.533 回答
0

这只能在客户端使用 javascript 来完成,我现在正在使用这个:https ://github.com/johnculviner/jquery.fileDownload

jQuery File Download 是一个跨服务器平台兼容的 jQuery 插件,它允许使用 Web 通常无法实现的类似 Ajax 的文件下载体验。

于 2013-09-11T09:19:28.613 回答