gpt4 book ai didi

php - mpdf 在 Google Chrome 中不起作用,但在 Firefox 中工作正常

转载 作者:可可西里 更新时间:2023-11-01 00:43:04 24 4
gpt4 key购买 nike

我在使用 mPDF 创建 PDF 文档时再次陷入困境。我已经完成了以下代码,它们在 Firefox 和 Safari 中运行良好,但在 Google Chrome 中无法运行。

require_once 'mpdf60/mpdf.php';
$mpdf=new mPDF('c','A4','','' , 0 , 0 , 0 , 0 , 0 , 0);

$mpdf->SetDisplayMode('fullpage');

$mpdf->list_indent_first_level = 0;
$stylesheet = file_get_contents('css/style.css');
$mpdf->WriteHTML($stylesheet,1);
$mpdf->WriteHTML($test, 2);
$mpdf->Output();

谁能指导我如何解决这个问题?

最佳答案

根据您的评论,在发送输出之前尝试此操作:

ob_clean();
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $yourFileName . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');

require_once 'mpdf60/mpdf.php';
$mpdf=new mPDF('c','A4','','' , 0 , 0 , 0 , 0 , 0 , 0);

$mpdf->SetDisplayMode('fullpage');

$mpdf->list_indent_first_level = 0;
$stylesheet = file_get_contents('css/style.css');
$mpdf->WriteHTML($stylesheet,1);
$mpdf->WriteHTML($test, 2);
$mpdf->Output();
ob_end_flush();

关于php - mpdf 在 Google Chrome 中不起作用,但在 Firefox 中工作正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28451161/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com