我要做的是生成一个文件并在其中指定内容,而无需在服务器上实际保存和创建文件。
<link rel="stylesheet" href="css/style.css" />
<?php
if(isset($_POST['download'])){
header('Content-disposition: attachment; filename=testing.txt');
header('Content-type: text/plain');
echo 'Lorem Ipsum';
exit();
}
echo
'
<form method="POST" action="index.php">
<input type="submit" name="download" value="submit"/>
</form>
';
?>
生成的 .txt 文件现在包含<?php
whic is <link rel="stylesheet" href="css/style.css" />
and also之前的内容Lorem Ipsum
,但我只想要我指定的内容,这只是Lorem Ipsum