如何在codeigniter中使用cezpdf创建和下载pdf文件?

时间:2015-08-07 05:52:30

标签: php codeigniter

function index() 
    {   
        $this->hello_world();
    }


    function hello_world()
    {
        $sol='<u>select</u>';

        $this->cezpdf->ezText('Hello World', 12, array('justification' => 'center'));
        $this->cezpdf->ezSetDy(-10);
        $content = '<table><tr><th>Month</th><th>Savings</th></tr><tr><td>January</td><td>$100</td></tr></table>';

        $this->cezpdf->ezText($content, 10);
        $data = $this->cezpdf->ezStream();

    }

我使用此代码。它的工作正常是在新的浏览器选项卡中创建pdf ...但我需要下载该文件。你帮忙吗?

1 个答案:

答案 0 :(得分:0)

将参数传递给ezStream函数

$this->cezpdf->ezStream(array('download'=>1));