开发者

how to create the pdf file

开发者 https://www.devze.com 2023-02-07 01:44 出处:网络
how could be create the Pdf file by using php. i want a pdf file for the one page no need for number of page and e开发者_开发百科very information should .is there any way for creating the one pageAsid

how could be create the Pdf file by using php. i want a pdf file for the one page no need for number of page and e开发者_开发百科very information should .is there any way for creating the one page


Aside from the already mentioned FPDF, there is also TCPDF. Have a look at their examples.


I warmly recommend the Fpdf class, I have used it before and it is really simple to use, and it comes with some easy to understand tutorials.

Creating a simple page is as simple as

$pdf=new FPDF();

$pdf->AddPage();

$pdf->SetFont('Arial','B',16);

$pdf->Cell(40,10,'Hello World!');

$pdf->Output();

(taken from it's first tutorial)

0

精彩评论

暂无评论...
验证码 换一张
取 消