我想用函數writehtmlcell使用foreach循環來填充表格。 我得到的錯誤就像null或其他東西以及爲foreach提供的無效參數。任何想法?使用foreach循環填充writehtmlcell中的表?
代碼如下所示。
$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);
哎呀對不起W8 ..讓我更新。 – user2901740
我已經使用計數器$ ctrword ++所以它怎麼會不會被執行? – user2901740