终极目标:我想创建一个网页,用户可以在表格中输入信息。有了这些信息,我想通过将给出的信息插入到模板中然后强制下载来创建一个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)的情况下执行此操作?
答案 0 :(得分:34)
而不是将其保存到文件中,只需在发送标题后echo
将其保存。
答案 1 :(得分:19)
意识到几乎每次PHP脚本响应请求时,它都会“生成一个由浏览器下载的文件”。您echo
,print
,printf
或以其他方式输出标准输出的任何内容都是该“文件”的内容。
您所要做的就是告诉浏览器应该以不同的方式处理“文件” - 您输出的标题应该已经这样做了。发送标题后,您打印的任何内容都将成为下载内容。