下载csv文件无法在服务器上运行

时间:2016-08-11 08:11:55

标签: php

您好需要下载生成的csv文件,我在代码下面使用但在服务器上我无法下载csv文件。相同的代码在我的本地系统中工作正常,但不能在实时服务器上工作。

<?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);  
}
?>

1 个答案:

答案 0 :(得分:0)

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

相关问题