$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
文件而不加查看。那么,我该怎么做?请帮助我。
谢谢
您可以使用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可以看到所有参考。