Blame view

common/components/fpdf/tutorial/tuto1.php 151 Bytes
2e86c939   xu   “首次提交”
1
2
3
4
5
6
7
8
9
<?php
require('../fpdf.php');

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