在我的项目中有一个部分,当用户单击按钮时,它会下载一个包含一些字符串的 .txt 文件。 我在文件 .php 中运行此代码。 .php 文件会创建 .txt 文件,但不会将其下载到浏览器中。
<?php
$outString = "write here";
$file = "test.txt";
$txt = fopen($file, "w") or die("Unable to open file!");
fwrite($txt, $outString);
fclose($txt);
header('Content-Description: File Transfer');
header('Content-Disposition: attachment; filename='.basename($file));
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
header("Content-Type: text/plain");
readfile($file);
?>