📜  如何使 fpdf 居中 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:07.584000             🧑  作者: Mango

代码示例1
// Set font
$pdf->SetFont('Arial','B',16);
// Move to 8 cm to the right
$pdf->Cell(80);
// Centered text in a framed 20*10 mm cell and line break
$pdf->Cell(20,10,'Title',1,1,'C');