我有一个文件index2.php已被表单写入。
这个文件的全部内容,我已经$final_code
使用输出缓冲区存储在一个变量中。
我现在希望在页面末尾添加一个“下载”按钮,这会弹出一个另存为对话框,允许用户将此文件的源代码(即变量)保存为 .txt - 但我很难过。
index2.php:
<?php
// Start buffering the output
ob_start();
?>
<!-- INDEX2.PHP HTML ELEMENTS HERE -->
<?php
// Store the contents of the buffer
$final_code = ob_get_contents();
// Print the contents of the buffer
ob_end_flush();
?>
<form action="savefile.php" method="post">
Happy? Save this to file: <input type="submit" name="savefile" value="Save" />
</form>
我不确定这是否需要在这个文件或savefile.php中工作,所以后者目前是空白的。