加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

PHP FPDF无法在Chrome中加载PDF文档

发布时间:2020-12-13 22:26:21 所属栏目:PHP教程 来源:网络整理
导读:我正在尝试使用带有 PHP的fpdf库生成pdf文档,但我在chrome中收到错误,因为无法加载PDF文档.我能够在firefox中正确查看文档.下面是我试图生成pdf的代码.有人可以帮忙吗?提前致谢. ?php ini_set('display_startup_errors',1); ini_set('display_errors',1); e
我正在尝试使用带有 PHP的fpdf库生成pdf文档,但我在chrome中收到错误,因为无法加载PDF文档.我能够在firefox中正确查看文档.下面是我试图生成pdf的代码.有人可以帮忙吗?提前致谢.

<?php
 ini_set('display_startup_errors',1);
 ini_set('display_errors',1);
 error_reporting(-1);
 ob_start();
 $pdf = new FPDF();
 $pdf->AddPage();
 $pdf->SetFont('Arial','B',16);
 $pdf->Cell(40,10,'Hello World!');
 header('Content-type: application/pdf');
 header('Content-Transfer-Encoding: binary');
 header("Content-Disposition: inline; filename='example2.pdf'");
 $pdf->Output('example2.pdf','I');
 ob_end_flush();
?>

解决方法

我知道这个老问题,但评论中有答案请求.
不要设置标题. FPDF生成它们.

<?php
   require('fpdf.php');

   $pdf = new FPDF();
   $pdf->AddPage();
   $pdf->SetFont('Arial',16);
   $pdf->Cell(40,'Hello World!');
   $pdf->Output('example2.pdf','I');
?>

我也推荐enter link description here

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读