2 回答

TA貢獻(xiàn)1895條經(jīng)驗(yàn) 獲得超3個(gè)贊
如果您想要每行一個(gè)數(shù)字,則應(yīng)該通過(guò)tr在循環(huán)內(nèi)移動(dòng) -pairs 來(lái)工作:
foreach($row as $column) {
$table .="<tr><td>";
$values = implode(",",$column);
$table .= count($column);
$table .="</td></tr>";
}
注意:不要忘記刪除電流$table .= "<tr>";和$table .= "</tr>";線路。
如果您只想要一列中的數(shù)據(jù),則實(shí)際上不需要使用表。您可以只回顯 div 中的數(shù)字。

TA貢獻(xiàn)2041條經(jīng)驗(yàn) 獲得超4個(gè)贊
您可以簡(jiǎn)單地包含循環(huán)<tr>內(nèi)部foreach:
foreach($output as $row) {
foreach($row as $column) {
$table.="<tr>";
$table .="<td>";
$values = implode(",",$column);
$table .= count($column);
$table .="</td>";
$table.="</tr>";
}
}
$table.="</table>";
echo $table;
- 2 回答
- 0 關(guān)注
- 119 瀏覽
添加回答
舉報(bào)