FPDFでpdfのブラウザ表示が上手くいかない!次のエラーが出る! FPDF error: Some data has already been output, can't send PDF file
FPDFでpdfのブラウザ表示が上手くいかない!次のエラーが出る! FPDF error: Some data has already been output, can't send PDF file Macで、MAMPのhtdocs以下にtest.phpという名前のファイルに以下のように書いたのですが上手くいきません。 <?php require('fpdf.php'); $pdf = new FPDF(); $pdf->AddPage(); $pdf->SetFont('Arial','B',16); $pdf->Cell(40,10,'Hello World!'); ob_end_clean(); $pdf->Output('abc7.pdf','I'); ?> $pdf->Output('abc7.pdf','F'); というようにOutputメソッドの第2引数を「F」にすると、ちゃんとtest.phpと同じフォルダにabc7.pdfが作成されるのですが、第2引数を「I」や「D」にすると、 FPDF error: Some data has already been output, can't send PDF file というエラー文が出ます。原因がわかる方いらっしゃいますか?
PHP・7,789閲覧・50