📄 tuto1.php
字号:
<?php
define('FPDF_FONTPATH','include/fpdf/font/');
require('include/fpdf/fpdf.php');
$pdf=new FPDF();
$pdf->Open();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output('Quote.pdf','D'); //added file name to make it work in IE, also forces the download giving the user the option to save
//$pdf->Output();
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -