使用foreach循环在writehtmlcell中填充表格?

时间:2014-02-28 04:16:46

标签: php tcpdf

我正在尝试使用foreach循环使用函数writehtmlcell填充表。 我收到像null或者其他东西的错误以及为foreach提供的无效参数。有什么想法吗?

代码如下所示。

$get_output = array(one, two, three, four, five);
$ctrword = 0;
$html .="<table>";
foreach ($get_output as $key) {
    $ctrword++;
    if(($ctrword % 5) == 0)
    {
       html .= "<tr>";

    }
    if(($ctrword%5)==1)
    {
       $html .= "<td>".$key."</td>";  

    }
    if(($ctrword%5)==5) 
    {
       $html .= "</tr>";

    }

 }          

$html .= "</table>";
pdf->WriteHtmlCell(0,0,'','',$html,1);

1 个答案:

答案 0 :(得分:1)

A)

html .= "<tr>";  // missing $html

b)如果一个,两个......不是常数,请使用下面的代码

 $get_output = array('one', 'two', 'three', 'four', 'five');