如何在 fpdf 中书写法语
How to write french in fpdf
我需要写一些特定的法语字符,例如 é è ê ...等
这是单元格:
$this->Cell(50,7,"Référence ".$info["reference"]);
这是输出:
有解决办法吗?
您可以使用 utf8_decode()
$this->Cell(50,7,utf8_decode("Référence ".$info["reference"]));
我需要写一些特定的法语字符,例如 é è ê ...等
这是单元格:
$this->Cell(50,7,"Référence ".$info["reference"]);
这是输出:
有解决办法吗?
您可以使用 utf8_decode()
$this->Cell(50,7,utf8_decode("Référence ".$info["reference"]));