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 ...但我需要下载该文件。你帮忙吗?
答案 0 :(得分:0)
将参数传递给ezStream
函数
$this->cezpdf->ezStream(array('download'=>1));