我想避免在浏览器中预览PDF并将pdf保存在文件夹中,我使用dompdf工具如何实现它。基本上我会从API调用此函数,所以我想避免在浏览器上预览。
这是我的代码:
public function load_view($view, $data = array(),$id,$type)
{
$dompdf = new Dompdf();
$html = $this->ci()->load->view($view, $data, TRUE);
$dompdf->loadHtml($html);
$time = time();
$dompdf->setPaper('portrait');
$dompdf->render();
file_put_contents('uploads'.'/'.'pdf'.'/'.$id.'_'.$type.".pdf", $dompdf->output());
}
}
您需要在PHP代码中添加标题以通知浏览器强制下载提供的内容。
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"".$filename."\"");
$ filename:将在客户端使用此名称下载文件