如何将csv文件下载到指定目录中。 现在我使用了这段代码,
header("Location:uploads/".$dire);
header("Content-type: application/x-msdownload");
header("Content-Disposition: attachment; filename=".$nn);
header("Pragma: no-cache");
header("Expires: 0");
此处,$dire
是上传文件夹的子目录,$nn
是csv文件名。
我想下载此$nn
文件并保存在指定目录$dire
中。
但它显示错误
提前致谢。
答案 0 :(得分:3)
您无法控制客户端(Web浏览器)的行为。