Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
header("Content-Disposition: attachment; filename=\"uploaded.pdf\"");
这是因为您像上面那样发送的 HTTP 标头告诉浏览器期望下载一个文件。他们没有告诉浏览器期待 HTML 内容(默认)。因此,您在回声中发送的内容不会被显示。
尽管我相信您可以找到任何解决方法,但两者都无法正常工作,但关键是您在调试时只需要这些回显,因此您可以在调试时禁用提到的标头调用,一旦一切设置完毕,再次启用它文件可以下载。