【问题标题】:Fatal error: Uncaught Exception: FPDF error: Some data has already been output, can't send PDF file (output started at致命错误:未捕获异常:FPDF 错误:一些数据已经输出,无法发送 PDF 文件(输出开始于
【发布时间】:2021-05-01 03:18:18
【问题描述】:

我正在根据选定的员工 ID 生成一个 PDF 文件我在开发时遇到本地系统上的错误,说 致命错误:未捕获的异常:FPDF 错误:一些数据已经输出,可以'不发送 PDF 文件(输出从 /path 开始)

然后我将这两行添加到 php 脚本中,它工作正常

ob_start();

最后

ob_end_flush();

但是在将它托管到实时服务器后,错误又被抛出了

已在 php 脚本 Documentation Link 开头引用了 FPDF 文档**ob_end_clean();**

完整的代码如下,

empleavehis.php 页面

<?php
if (isset($_POST['pdfemployeeleave'])) {
ob_start();
require('mysql_table.php');

$link = mysqli_connect('localhost','root','','hr');
$empidinfo=$_REQUEST['empid'];

class PDF extends PDF_MySQL_Table
{
    function Header()
    {
    // Title
        $this->Image('img/prudentialshippinglines.png',15,6,15);
        $this->SetFont('Arial','',18);
        $this->Cell(0,6,'Short Summary ',0,1,'C');
        $this->Cell(0,6,' ',0,1,'C');
        $this->SetFont('Arial','',15);
        $this->Cell(0,6,'History Of Leaves Taken By The Employee',0,1,'C');
        $this->Ln(10);
    // Ensure table header is printed
        parent::Header();
    }
}

// Connect to database

$pdf = new PDF('L','mm','A4');


//$pdf->AddPage();
// First table: output all columns
// $pdf->Table($link,'select * from employees where EMP_ID = 1');
$pdf->AddPage();
// Second table: specify 3 columns
$pdf->AddCol('Leave_Type',48,'Type');
$pdf->AddCol('LeaveSub_Type',48,'Sub Type');
$pdf->AddCol('Start',48,'Start');
$pdf->AddCol('End',48,'End');
$pdf->AddCol('Remarks',48,'Remarks');
$pdf->AddCol('Status',48,'Status');

$prop = array('HeaderColor'=>array(255,150,100),
    'color1'=>array(210,245,255),
    'color2'=>array(255,255,210),
    'padding'=>2);
$pdf->Table($link,"select Leave_Type,LeaveSub_Type,Start,End,Remarks,Status from holiday where EMP_ID = '".$empidinfo."'",$prop);
//$pdf->Image('img/male.png',10,10,-300);
$fileName = "Leave Summary Of - ".$row['Name'].".pdf";
$pdf->Output($fileName, 'D');
}
ob_end_flush();
?>

mysql_table.php 文件

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

class PDF_MySQL_Table extends FPDF
{
    protected $ProcessingTable=false;
    protected $aCols=array();
    protected $TableX;
    protected $HeaderColor;
    protected $RowColors;
    protected $ColorIndex;

    function Header()
    {
    // Print the table header if necessary
        if($this->ProcessingTable)
            $this->TableHeader();
    }

    function TableHeader()
    {
        $this->SetFont('Arial','B',12);
        $this->SetX($this->TableX);
        $fill=!empty($this->HeaderColor);
        if($fill)
            $this->SetFillColor($this->HeaderColor[0],$this->HeaderColor[1],$this->HeaderColor[2]);
        foreach($this->aCols as $col)
            $this->Cell($col['w'],6,$col['c'],1,0,'C',$fill);
        $this->Ln();
    }

    function Row($data)
    {
        $this->SetX($this->TableX);
        $ci=$this->ColorIndex;
        $fill=!empty($this->RowColors[$ci]);
        if($fill)
            $this->SetFillColor($this->RowColors[$ci][0],$this->RowColors[$ci][1],$this->RowColors[$ci][2]);
        foreach($this->aCols as $col)
            $this->Cell($col['w'],5,$data[$col['f']],1,0,$col['a'],$fill);
        $this->Ln();
        $this->ColorIndex=1-$ci;
    }

    function CalcWidths($width, $align)
    {
    // Compute the widths of the columns
        $TableWidth=0;
        foreach($this->aCols as $i=>$col)
        {
            $w=$col['w'];
            if($w==-1)
                $w=$width/count($this->aCols);
            elseif(substr($w,-1)=='%')
                $w=$w/100*$width;
            $this->aCols[$i]['w']=$w;
            $TableWidth+=$w;
        }
    // Compute the abscissa of the table
        if($align=='C')
            $this->TableX=max(($this->w-$TableWidth)/2,0);
        elseif($align=='R')
            $this->TableX=max($this->w-$this->rMargin-$TableWidth,0);
        else
            $this->TableX=$this->lMargin;
    }

    function AddCol($field=-1, $width=-1, $caption='', $align='L')
    {
    // Add a column to the table
        if($field==-1)
            $field=count($this->aCols);
        $this->aCols[]=array('f'=>$field,'c'=>$caption,'w'=>$width,'a'=>$align);
    }
    function Table($link, $query, $prop=array())
        {
        // Execute query
        $res=mysqli_query($link,$query) or die('Error: '.mysqli_error($link)."<br>Query: $query");
        // Add all columns if none was specified
        if(count($this->aCols)==0)
        {
            $nb=mysqli_num_fields($res);
            for($i=0;$i<$nb;$i++)
                $this->AddCol();
        }
        // Retrieve column names when not specified
        foreach($this->aCols as $i=>$col)
        {
            if($col['c']=='')
            {
                if(is_string($col['f']))
                    $this->aCols[$i]['c']=ucfirst($col['f']);
                else
                    $this->aCols[$i]['c']=ucfirst(mysqli_fetch_field_direct($res,$col['f'])->name);
            }
        }
        // Handle properties
        if(!isset($prop['width']))
            $prop['width']=0;
        if($prop['width']==0)
            $prop['width']=$this->w-$this->lMargin-$this->rMargin;
        if(!isset($prop['align']))
            $prop['align']='C';
        if(!isset($prop['padding']))
            $prop['padding']=$this->cMargin;
        $cMargin=$this->cMargin;
        $this->cMargin=$prop['padding'];
        if(!isset($prop['HeaderColor']))
            $prop['HeaderColor']=array();
        $this->HeaderColor=$prop['HeaderColor'];
        if(!isset($prop['color1']))
            $prop['color1']=array();
        if(!isset($prop['color2']))
            $prop['color2']=array();
        $this->RowColors=array($prop['color1'],$prop['color2']);
        // Compute column widths
        $this->CalcWidths($prop['width'],$prop['align']);
        // Print header
        $this->TableHeader();
        // Print rows
        $this->SetFont('Arial','',11);
        $this->ColorIndex=0;
        $this->ProcessingTable=true;
        while($row=mysqli_fetch_array($res))
            $this->Row($row);
        $this->ProcessingTable=false;
        $this->cMargin=$cMargin;
        $this->aCols=array();
    }
    }
    ?>

据我检查,我没有留下任何空格或单词空格,并且还尝试设置以下内容

ob_clean();
ob_end_flush(); 
ini_set("session.auto_start", 0);

错误图片

文件也不包含 BOM 字符

【问题讨论】:

  • 您为什么不按照“输出开始于/路径”的消息并修复该行?
  • 原始错误信息包括文件和输出数据的行。可悲的是,您从报价中完全删除了这一点。但最后,查看该文件和行号并删除输出就这么简单。
  • 错误行将我引导到 fpdf.php 中的第 271 行,即 268 function Error($msg) 269 { 270 // 致命错误 271 throw new Exception('FPDF error: '.$msg );第272章
  • 已将错误描述添加到问题中
  • 相同的代码在本地服务器中运行,但在实时服务器中不运行

标签: php pdf pdf-generation fpdf


【解决方案1】:

我将整个 fpdf 代码移到了 php 文档的顶部,现在它正在被下载。未对代码进行任何更改

【讨论】:

  • 在您的问题中,文件已经以 &lt;?php 开头?那么如何将代码移到顶部呢?
  • @JanSlabon 我在 FPDF 代码顶部有一个 while 循环,而 FPDF 代码在该 while 循环下,我所做的是我从 while 循环 php 标签中删除了 FPDF 代码并创建了一个新的文档顶部的 php 标签(就在 下方,添加了 FPDF 代码并关闭了 php 标签。其余代码在此之后
  • 对于下一个问题,请提供所有信息,不要从文件中截取片段。有了&lt;!DOCTYPE html&gt; 位于文件顶部的信息,告诉您导致输出的原因会容易得多;-)
猜你喜欢
  • 2017-01-05
  • 2020-05-15
  • 2012-03-17
  • 1970-01-01
  • 1970-01-01
  • 2017-09-28
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多