最终目标:我想创建一个用户可以在表单中输入信息的网页。有了这些信息,我想通过将给定的信息插入模板然后强制下载来创建一个 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)的情况下做到这一点?