在不丢失格式的情况下强制下载



我想从服务器下载文本文件到客户端,代码正在运行,但在我下载文本文件后,它在顶部显示了一个额外的空行。

如何删除该行,或者如何将文本文件的原始格式输入到客户端机器中?

这是我的代码:

$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);
}

确保开口前没有东西<?php标签。

检查所有标签是否已关闭(打开和关闭)。从php页面中删除所有空行。

相关内容

  • 没有找到相关文章

最新更新