我正在尝试使用 php 文件下载一个简单的 .txt 但它不起作用

时间:2021-03-24 10:19:22

标签: php txt

在我的项目中有一个部分,当用户单击按钮时,它会下载一个包含一些字符串的 .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);

?>

0 个答案:

没有答案