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.
我知道这很容易,但我似乎找不到解决方案。我想从文件夹中下载 pdf。pdf 位于名为forms的文件夹中。我的脚本位于不同的文件夹中。
当我尝试使用以下代码下载文件时:
header('Content-Disposition: attachment; filename="forms/form1976.pdf"');
文件名变为:forms-form1976.pdf。不对,文件名应该是:form1976.pdf。如何先输入正确的文件夹?
你应该做这样的事情
header('Content-type: application/pdf'); header('Content-Disposition: attachment; filename=example.pdf'); readfile("/path/to/yourfile.pdf");