gpt4 book ai didi

php - 如何生成PDF并保存到服务器

转载 作者:行者123 更新时间:2023-12-02 07:05:53 26 4
gpt4 key购买 nike

好吧,我正在尝试生成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);

提供输出的代码我不希望在浏览器上输出并且仍然文件损坏/格式无效

最佳答案

require('fpdf.php');

$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$content = $pdf->Output('doc.pdf','F');

http://www.fpdf.org/

关于php - 如何生成PDF并保存到服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12066875/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com