您好需要下载生成的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);
}
?>
答案 0 :(得分:0)
检查您的服务器,可能存在空间限制。