pdf文档下载错误

时间:2012-10-04 10:11:42

标签: codeigniter pdf download

您好我的网站上有一些pdf文件,用户可以下载,但问题是当我们下载这些pdf文件并尝试打开pdf时出现错误“打开文档时出错。文件是损坏,无法修复“但在传染病方面,这在我的本地系统中运行良好。 请指导我,这是我的代码

function download_pdf($parameters)
{

    $final_link = "$parameters";
    $path = strtolower($final_link);
    $file = "$path";

        if (file_exists($file)) {
            header('Content-Description: File Transfer');
            header('Content-Type: application/octet-stream');
            header('Content-Disposition: attachment;       filename='.basename($file));
            header('Content-Transfer-Encoding: binary');
            header('Expires: 0');
            header('Cache-Control: must-revalidate');
            header('Pragma: public');
            header('Content-Length: ' . filesize($file));
            ob_clean();
            flush();
            readfile($file);
            exit;
        }
        else
        {
            //echo "file do not exist";
            redirect('site/file_does_not_exist');
            //$data['main_content'] = 'not_found';
            //$this->load->view('includes/template',$data);
        }
}

1 个答案:

答案 0 :(得分:0)

请尝试使用此代码:

...
header('Content-Type: application/pdf');
...

来自Internet media types in wikipedia:

application/pdf: Portable Document Format

并确保文件名的扩展名为“.pdf”。