dongzhang6677 2016-10-26 23:53
浏览 70
已采纳

如何在php中使用数组值创建pdf

Hello everybody i am new fpdf. I have multiple array values and create a table.

$array1=[1,2,3];
$array2=['apple', "ball", "cat"];

I want to create a table using this values

Numbers Animals
1       Apple
2       Ball
3       Cat

I have tried this way but all values are printing one by one

require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',10);

for ($i=0; $i < count($array1); $i++) { 
    [$pdf->MultiCell(30,12,$array1[$i],1), $pdf->MultiCell(30,12,$array2[$i],1)];
    }
$pdf->Output();

Can anyone suggestion me how this problem. Thanks in advance.

  • 写回答

1条回答 默认 最新

  • dsklfsdlkf1232 2016-10-27 00:08
    关注
    $pdf = new FPDF();
    $pdf->AddPage();
    $pdf->SetFont('Arial','B',16);
    
    $array1= array(1,2,3);
    $array2= array('apple', "ball", "cat");
    
    $pdf->Cell(40,10,'Numbers');
    $pdf->Cell(40,10,'Animals');
    $pdf->Ln(10);
    foreach($array1 as $key=>$row){
        $pdf->Cell(40,10,$row);
        $pdf->Cell(40,10,$array2[$key]);
        $pdf->Ln(10);
    }
    $pdf->Output();
    

    As FPDF examples you can uses Cell() for display values. And For the Line breaks use Ln(). I assume both $array1 and array2 have similar number of elements. First two Cells use to display headings, then inside the loop display both values.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 Codesys配置ethercat错误
  • ¥15 mstsc远程桌面轮流掉线
  • ¥15 求一下oivio数据集
  • ¥15 android开发百度网盘文件浏览功能,是什么做的?用的什么技术实现?
  • ¥20 地震波形数据向量化的问题
  • ¥15 脊柱MRI图片分割与自动识别
  • ¥50 使用ADC0809 与 51 单片机设计电路以实现显示电压模拟值
  • ¥15 QGC打开没有地图显示,离线地图也不显示,如何解决?
  • ¥20 Android Studio 的 webview 与访问网络存在的限制
  • ¥15 某帖子的数据集不清楚来源,求帮助