php-PDF 文件未生成(使用 FPDF)

php-PDF file not generating(using FPDF)

我是运行一个像这样的简单例子:

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

预期的输出就像一个 pdf 页面,里面写着 Hello World 的文本...但我没有 pdf ..页面和 [=16= 中都没有错误生成] 页面空白那不是 pdf 文件..那么如何解决这个问题..?

您应该添加文件名;

$pdf->Output("myPdfFile.pdf", "F");