我想使用fpdf从数据库的报告。
$srg=mysql_query("select * from musteriler order by olusturmatarih");
$sira=0;
while($m=mysql_fetch_assoc($srg)){ $sira++;
$pdf->Cell(10,10,$sira,1,0,'L');
$pdf->Cell(20,10,$m['olusturmatarih'],1,0,'L');
$pdf->Cell(50,10,mb_convert_encoding($m['adisoyadi'], "ISO-8859-9","UTF-8"),1,0,'L');
$pdf->Cell(25,10,$m['telefonno'],1,0,'L');
$pdf->Cell(25,10,'',1,0,'L');
$pdf->Cell(60,10,$m['adres'],1,0,'L');
$pdf->Ln();
}
$pdf->Output();
这是我的pdf代码。但如果单元格中的文本过长,则文本溢出。我试着用multicell,但multicell只能改变一个单元格的高度。
有没有办法像html表格一样将所有单元格的高度设置为相同的行单元格?
1条答案
按热度按时间ltqd579y1#
tcpdf writehtml是我为这个问题找到的最好的解决方案。