⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tuto1.php

📁 开源的CRM,功能全面,国内最优秀的源码
💻 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 + -