好吧,我正在尝试生成 pdf 文件并将其保存到服务器,但是当我尝试查看该 pdf 时,它显示的格式无效。
代码 :
<?php
$content = "32w434";
file_put_contents("xyz.pdf",$content);
?>
如果我将文件从 pdf 更改为 doc 它可以正常工作并且可以完美打开但不是 pdf
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$content = $pdf->Output();
file_put_contents("xyz.pdf",$content);
给出输出的代码我不想在浏览器上输出,但文件仍然损坏/格式无效