我想在我的网络应用中生成 PDF 文件。我正在使用php,我试过fpdf library
我尝试使用以下代码创建pdf
:
<?php
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Привет мир!');
$pdf->Output();
?>
当我们在文件中使用英文字符时它起作用,但是文件编码是ANSI
并且在写入俄文字符时我得到了错误:
如果我将文件编码更改为utf-8
,则会收到错误:
FPDF error: Some data has already been output, can't send PDF file (output started at Z:\home\fpdf\www\tutorial\tuto1.php:1)
谁知道如何解决问题,请帮帮我!
答案 0 :(得分:1)
$pdf->Cell(40,10, iconv('UTF-8', 'CP-1251', $str) );
确保您将文档另存为UTF8