tuto1.php
来自「eGroupWare is a multi-user, web-based gr」· PHP 代码 · 共 11 行
PHP
11 行
<?php
define('FPDF_FONTPATH','../font/');
require('../fpdf.php');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?