我想将文本文件从服务器下载到客户端,代码正在运行,但是在我下载文本文件后,它在顶部显示了一个额外的空白行。
如何删除该行或如何将文本文件的原始格式输入客户端计算机?
这是我的代码:
$code = $_POST["Code"];
$File = "my$code.txt";
if (file_exists($File))
{
header("Content-Type:text/plain");
header ("Content-Disposition: attachment; filename=$File");
header("Content-Length:" . filesize("$File"));
$fp = fopen("$File", "r");
fpassthru($fp);
}