在html中显示fpdf数据

时间:2016-02-12 13:55:20

标签: php fpdf

我们正在尝试获取fpdf的所有html数据,但它显示为

���QO�0�����

我们正在使用这段代码来显示HTML数据

print_r($pdf->output("test.pdf", 'S'));

解释

我们正在设置这样的数据

 $pdf->Cell(30,8,"$res1->pro_type2",1,0);
 $pdf->Cell(30,8,"$res1->sub_type2",1,0);
 $pdf->Cell(30,8,"$res1->bedrooms",1,0);
 $pdf->Cell(20,8,"$res1->bathroom",1,0);
 $pdf->Cell(30,8,"$res1->carpet $res1->blank2",1,0);
 $pdf->Cell(20,8,"$res1->price",1,0);
 $pdf->Cell(30,8,"$res1->tower",1,1);

这创建了包含数据的pdf,但是我们想要html输出,因为它以pdf显示。

请告诉我们如何获取fpdf的html数据?

0 个答案:

没有答案