中心将文本与fpdf中的特殊字符对齐

时间:2014-03-26 09:21:47

标签: php fpdf

我使用fpdf生成pdf文件,并喜欢对齐文本中心。

$pdf->SetTextColor(0,42,92);
$pdf->SetFont('Arial','B',24);
$course = "This & that";         
$wi = $pdf->GetStringWidth( $course);
$startPoint = (($pdf->w)/2)-($wi/2);
$pdf->SetXY($startPoint, 195); 
$pdf->Cell($wi, 0, $course, 0, 0, 'C');

如果我用

替换$ course,一切正常
$course = "This that";

我想'&'在字符串中导致问题。如果有人想到这一点会很棒。

1 个答案:

答案 0 :(得分:0)

尝试此更改

int