最终目标是让用户下载.csv文件.现在我只是在测试下载一个简单的文本文件:test.txt.这个文件中唯一的东西是“测试”这个词.
这是files_to_download.PHP的HTML代码
Test file: <a href='test.PHP?file=test.txt'>Test.txt</a>
if(!(empty($_GET["file"]))) { $file_name = $_GET["file"]; $path = "path/to/file"; $fullPath = $path . $file_name; if(ini_get('zlib.output_compression')) ini_set('zlib.output_compression','Off'); header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Disposition: inline; attachment; filename=\"$file_name\""); header("Content-Type: text/plain"); header("Content-Transfer-Encoding: binary"); readfile($fullPath); }
我尝试过上面标题的变体,添加更多内容并删除其他标题.以上似乎是本网站最常推荐的.
我也试过改变
header("Content-Type: text/plain");
至
header("Content-Type: text/csv");
并得到相同的结果:空.txt或.csv文件.
从服务器直接打开文件(文件浏览器)时,文件不为空.我已经检查了文件的权限,它们都是644,所以整个世界至少可以读取文件.目录是777.
我需要指定的Apache服务器上是否有可能没有的配置,或者我是否遗漏了上述内容.
谢谢你的期待!
在大多数情况下,路径是错误的
原文链接:https://www.f2er.com/php/138518.html