使用php在我的网络应用程序中生成PDF文件

时间:2014-04-07 13:10:40

标签: php fpdf

我想在我的网络应用中生成 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并且在写入俄文字符时我得到了错误:

enter image description here

如果我将文件编码更改为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)

谁知道如何解决问题,请帮帮我!

1 个答案:

答案 0 :(得分:1)

$pdf->Cell(40,10, iconv('UTF-8', 'CP-1251', $str) );

确保您将文档另存为UTF8