简体   繁体   English

下载csv文件在服务器上不起作用

[英]Download csv file not working on server

Hello need to download generated csv file and i'm used below code but on server i'm not able to download csv file. 您好需要下载生成的csv文件,但我在下面的代码中使用了该文件,但是在服务器上,我无法下载csv文件。 The same code working fine in my local sytem but not working on live server. 相同的代码在我的本地系统中工作正常,但在实时服务器上不工作。

<?php 
function downloadFile($filename,$filepath)
{
header("Content-type: text/csv"); // instead of pdf use others... for text 
header("Content-disposition: attachment; filename=".$filename); 
readfile($filepath);  
}
?>

检查您的服务器,可能存在空间限制。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM