PHP创建文件以供下载而无需保存在服务器上

Tho*_*mas 30 php createfile force-download

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

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

<form action="test.php" method="post">
To file: <input type="text" name="tofile" />
<input type="submit" />
</form>
Run Code Online (Sandbox Code Playgroud)

这在我的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);

?>
Run Code Online (Sandbox Code Playgroud)

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

问题:如何在不弄乱服务器上的文件(test-download.html)的情况下执行此操作?

ale*_*lex 34

echo您可以在发送标题后将其保存到文件中,而不是将其保存到文件中.

  • @ arrowill12我答案中唯一的*代码*是`echo`,我不确定如何纠正. (3认同)

cHa*_*Hao 19

意识到几乎每次PHP脚本响应请求时,它都会"生成一个由浏览器下载的文件".你什么echo,print,printf,或以其他方式放出来到标准输出的是"文件"的内容.

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

  • @Thomas:是的,当你第一次意识到它时,它有点令人兴奋。但是浏览器基本上只是说“GET /some/url”并返回一堆字节(响应)和一些元数据(标头)。它不知道也不关心它们是如何生成的,或者它们存储在哪里,或者它们是否存储在任何地方。 (2认同)