错误从PHP应用程序导出文件

时间:2017-04-03 09:12:19

标签: php download

当我下载我的文件时,它不会显示数据的所有详细信息。但是当我改变我的选择时,例如我改变了日期,它工作正常并显示所有细节。

    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($this->_filepath).'.csv');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($this->_filepath));
    readfile($this->_filepath);
    exit();

这是记忆的问题吗?

0 个答案:

没有答案