dongli2000 2012-07-10 21:58
浏览 121
已采纳

FPDF错误:某些数据已经输出,无法发送PDF文件

well I get this error trying to use php class FPDF:

FPDF error: Some data has already been output, can't send PDF file (output started at
/mnt/webc/e1/12/5691512/htdocs/adminpanel/fpdf/test.php:1)

My test.php

<?php
require_once("fpdf.php");
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>

There are no blanks or anything... So where is the error???

  • 写回答

4条回答 默认 最新

  • dongluanjie8678 2012-07-10 22:11
    关注

    Some editors adds BOM at the start of a file.

    View your file in hex and remove it

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?