30

最终目标:我想创建一个用户可以在表单中输入信息的网页。有了这些信息,我想通过将给定的信息插入模板然后强制下载来创建一个 html 文件(下面称为 test-download.html)。由于我想在即将举行的研讨会上演示这一点,人们将在“同时”使用它,我不想将文件保存在服务器上,而只是强制下载。

到目前为止:我的 html 文件(test.html)中有这个:

<form action="test.php" method="post">
To file: <input type="text" name="tofile" />
<input type="submit" />
</form>

这在我的 test.php 中:

<?php
$filename = 'test-download.html';
$htmlcode1 = "<HTML> \n <BODY>";
$htmlcode2 = "</BODY> \n <HTML>";
$somecontent = $htmlcode1.$_POST["tofile"].$htmlcode2;
!$handle = fopen($filename, 'w');
fwrite($handle, $somecontent);
fclose($handle);


header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Length: ". filesize("$filename").";");
header("Content-Disposition: attachment; filename=$filename");
header("Content-Type: application/octet-stream; "); 
header("Content-Transfer-Encoding: binary");

readfile($filename);

?>

这会覆盖 test-download.html 文件并强制下载。

问题:如何在不弄乱服务器上的文件(test-download.html)的情况下做到这一点?

4

2 回答 2

34

与其将其保存到文件中,不如将echo其保存在您发送标头之后。

于 2011-04-06T01:00:55.223 回答
20

意识到几乎每次 PHP 脚本响应请求时,它都会“生成一个文件”,由浏览器下载。您echo, print,printf或以其他方式输出到标准输出的任何内容都是该“文件”的内容。

您所要做的就是告诉浏览器“文件”应该以不同的方式处理——并且您输出的标题应该已经这样做了。发送标头后,您打印的任何内容都将成为下载的内容。

于 2011-04-06T01:08:18.250 回答