如何将文件下载到php中的指定目录?

时间:2012-09-10 10:53:26

标签: php download

如何将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中。 但它显示错误

提前致谢。

1 个答案:

答案 0 :(得分:3)

您无法控制客户端(Web浏览器)的行为。