直接下载dompdf文件而不是视图

问题描述 投票:0回答:1
$this->load->view('student/zipfile',$this->data);
$html = $this->output->get_output();
$this->load->library('pdf');
$this->dompdf->loadHtml($html);
$this->dompdf->render();
$this->dompdf->stream("welcome.pdf", array("Attachment"=>0));

我正在更改我的问题,因为我无法找到zip的解决方案。现在,我只想下载dompdf文件而不加查看。那么,我该怎么做?请帮助我。

谢谢

php codeigniter dompdf
1个回答
0
投票

您可以使用ZipArchive:addFile之类的方式:

$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
    $zip->addFile('/path/to/index.txt', 'newname.txt');
    $zip->close();
    echo 'ok';
} else {
    echo 'failed';
}

Here可以看到所有参考。

© www.soinside.com 2019 - 2024. All rights reserved.