强制下载生成的 HTML
Posted
技术标签:
【中文标题】强制下载生成的 HTML【英文标题】:Force Download of generated HTML 【发布时间】:2017-09-03 01:16:31 【问题描述】:我正在创建一个 WordPress 插件,它会在按下按钮时生成 html 页面。这样可行;尽管代码位于 WP 插件中,但该问题与 WordPress 无关。下一步是提示用户下载/打开创建的文件。
根据此处和其他地方的研究,此过程应创建下载/打开提示:
/* another process creates an HTML file "somefile.html", and stores it
in the plugin folder; that is done with an fopen/fwrite/fclose.
This process is started by a button on the plugin settings page.
When the button is clicked, the "somefile.html" is created.
So at this point, the HTML file is created and stored in the plugin folder */
$size = filesize($thefile);
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='somefile.html');
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . $size);
exit;
该过程(通过单击插件设置页面上的按钮开始)确实创建了 HTML 文件,并且它正确存储在插件文件夹中(文件位置不是问题,将在最终版本中解决)。然后我看到打开/保存文件对话框。
如果我从服务器打开生成的 HTML 文件,则 HTML 符合预期。但是如果我通过打开/保存提示打开生成的文件,我会得到插件设置页面的表示,而不是生成的 HTML。
我怀疑我需要一个 obflush()/flush(),但是将这些语句放在标题行之前并不能解决问题。
所以我的问题是打开/另存为对话框没有读取存储在服务器上的“somefile.html”。我得到一个带有打开对话框的插件设置 HTML 页面。
如何确保通过打开/保存对话框打开我创建的 HTML 文件?
(请注意,虽然代码在 WordPress 插件中,但问题并不特定于 WordPress。代码只是创建了一个表单按钮;在提交表单操作时,会创建一个 HTML 文件并将其保存到服务器。'header ' 语句然后用于创建保存/打开对话框。)
添加
此代码应显示该过程。这是用于创建 somefile.html 文件的“有效”HTML 页面。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body>
This is the page with some content. It will create the HTML page (the 'xoutput' content).
</body>
<!--- the above is the page that is initially displayed -->
<?php
// now we create the content of the generated/saved file
$xoutput = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body>';
$xoutput .= 'There is some content generated here. Actual content doesn't matter.';
$xoutput .= '</body> </html>';
$thefile = "outputfile.html";
$handle = fopen($thefile, "w");
fwrite($handle, $xoutput);
fclose($handle);
$quoted = sprintf('"%s"', addcslashes(basename($thefile), '"\\'));
$size = filesize($thefile);
// now that the somefile.html has been created and stored, let's create the open/save dialog
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $quoted);
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . $size);
exit;
return;
当您加载页面时,您会看到“这里生成了一些内容”HTML 页面,而不是“somefile.html”内容。
【问题讨论】:
可以通过浏览器访问 somefile.html 吗? 我可以看到服务器上的 somefile.html 是我生成的文件(通过我的代码编辑器)。问题是打开对话框显示的文件是插件页面,而不是生成的文件。 不,我的意思是用你的浏览器,你能通过 url 打开 somefile.html 吗?我尽量远离 CMS,但我记得有时对内部文件夹的访问会受到 htaccess 文件之类的限制。 是的。如果我使用代码创建指向生成文件的 href 链接(或手动打开文件,因为我知道它的位置,并且管理员可以访问该内部文件夹),则内容符合预期。 你能说出那个插件设置页面来自哪里吗?可能是您的 somefile.html 应该位于的文件夹中的 index.html 或 index.php 吗? 【参考方案1】:新鲜试验和测试:
if (file_exists($thefile))
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($thefile));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: '.filesize($thefile));
ob_clean();
flush();
readfile($thefile);
exit;
【讨论】:
是的,可以。感谢您在这方面的额外时间! 虽然上面的代码可以工作(感谢@deg),但出现了一个错误:请参阅***.com/questions/47106803/…。以上是关于强制下载生成的 HTML的主要内容,如果未能解决你的问题,请参考以下文章
求指导,帝国CMS 终极栏目只生成内容页,不生成列表页 ,怎么设置!! 在线等指导