0

In the below codeigniter i have placed the controller.Now i have placed a PDF file in a view and i want to call the PDF file from the controller.but it displays like unreadable format (ie)

ÄQ°ùÂ/B‘]xJxyEÆ›Vòþ˜X‚X ð?¼—ä*î7îç·JÚ–ÎÐhK*_ÝüÊ®ˆ¯=»W'{(.

Controller:

<?php

class Help extends ci_controller
{   
    function index(){
        $this->load->helper(array('My_Pdf')); 
        $this->load->view('ss.pdf');
    }
}
?>
4

1 に答える 1

0

PDF ファイルにリダイレクトできます。

public function index() {
    redirect("test.pdf");
}    

または、コントローラーに PDF ファイルをロードし、PDF ファイルの読み取りに必要な正しいヘッダーを設定していることを確認します。

public function index() {
        header("Content-type: application/pdf");
        include("test.pdf");
}
于 2013-11-14T09:57:23.590 に答える