第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

當(dāng)填充 PHP 數(shù)組時 HTML 表中的空單元格

當(dāng)填充 PHP 數(shù)組時 HTML 表中的空單元格

PHP
心有法竹 2023-08-11 17:58:14
我剛剛用 php 數(shù)組填充了 html 表,但現(xiàn)在我看到有一些空單元格。建表的代碼是:echo "<table id='data' style='border: 1px solid black'><tbody>";echo "<th>Country </th>";echo "<th>Counter</th>";foreach($analysis_data as $row){    echo "<tr>";    foreach(['country','counter'] as $attribute){        echo "<td>".$row[$attribute]."<td>";    }    echo '</tr>';}echo '</tbody></table>';有一個屏幕截圖顯示表格當(dāng)前的樣子如果我使用var_dump($analysis data)它看起來像array(9) { [0]=> array(2) { ["country"]=> string(30) "Germany " ["counter"]=> int(34) } [1]=> array(2) { ["country"]=> string(30) "Vorarlberg " ["counter"]=> int(2) } [2]=> array(2) { ["country"]=> string(30) "Oberoesterreich " ["counter"]=> int(9) } [3]=> array(2) { ["country"]=> string(30) "Wien " ["counter"]=> int(5) } [4]=> array(2) { ["country"]=> string(30) "Switzerland " ["counter"]=> int(3) } [5]=> array(2) { ["country"]=> string(30) "Salzburg " ["counter"]=> int(6) } [6]=> array(2) { ["country"]=> string(30) "Niederoesterreich " ["counter"]=> int(1) } [7]=> array(2) { ["country"]=> string(30) "Czech Republic " ["counter"]=> int(3) } [8]=> array(2) { ["country"]=> string(30) "Steiermark " ["counter"]=> int(1) } }有人知道這些空單元格來自哪里以及如何刪除它們嗎?
查看完整描述

1 回答

?
神不在的星期二

TA貢獻(xiàn)1963條經(jīng)驗 獲得超6個贊

修復(fù)你的 html 標(biāo)記:


// Create `thead` for header and open `tr` for first row

echo "<table id='data' style='border: 1px solid black'><thead><tr>";

echo "<th>Country </th>";

echo "<th>Counter</th>";


// Close `tr` and `thead`, open `tbody`

echo "</tr></thead><tbody>";


foreach($analysis_data as $row){

    echo "<tr>";

    foreach(['country','counter'] as $attribute){

        echo "<td>".$row[$attribute]."</td>";    // close `td` here

    }

    echo '</tr>';

}

echo '</tbody></table>';


查看完整回答
反對 回復(fù) 2023-08-11
  • 1 回答
  • 0 關(guān)注
  • 142 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號