php 表格元素的本質(zhì):表格結(jié)構(gòu):表格由
標(biāo)簽組成,行由
標(biāo)簽組成,單元格由
標(biāo)簽組成。列布局: |
元素在一個 |
行內(nèi)相鄰排列,形成列。行布局:
元素在
中相鄰排列,形成行。
解惑 PHP 表格:元素的本質(zhì),列還是行?
PHP 中的表格使用 <table>、<code><tr> 和 <code><td> 標(biāo)簽組織數(shù)據(jù)。<code><table> 是表格 itself,<code><tr> 是行,<code><td> 是單元格。<p>理解元素的本質(zhì)對于遍歷和操作表格數(shù)據(jù)至關(guān)重要。</p>
<p><strong>列 vs 行</strong></p>
<ul><li>
<strong>列:</strong><code><td> 元素在一個 <code><tr> 行內(nèi)相鄰排列。<li>
<strong>行:</strong><code><tr> 元素是 <code><table> 中相鄰排列的一組 <code><td> 單元格。<p><strong>實戰(zhàn)案例:獲取表格數(shù)據(jù)</strong></p>
<p>考慮以下表格:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:html;toolbar:false;'><table>
<tr>
<td>姓名</td>
<td>年齡</td>
</tr>
<tr>
<td>Alice</td>
<td>25</td>
</tr>
<tr>
<td>Bob</td>
<td>30</td>
</tr>
</table></pre><div class="contentsignin">登錄后復(fù)制</div></div><p>要獲取表格中所有行的姓名:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>$table = document->getElementsByTagName('table')[0];
$rows = $table->getElementsByTagName('tr');
$names = [];
foreach ($rows as $row) {
$cells = $row->getElementsByTagName('td');
$name = $cells[0]->textContent;
$names[] = $name;
}</pre><div class="contentsignin">登錄后復(fù)制</div></div><p>要獲取表格中第 1 列的所有單元格:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>$cells = $table->getElementsByTagName('td');
$column1 = [];
foreach ($cells as $cell) {
if ($cell->parentNode === $rows[0]) {
$column1[] = $cell->textContent;
}
}</pre><div class="contentsignin">登錄后復(fù)制</div></div><p><strong>結(jié)論</strong></p>
<p>理解 PHP 表格元素(行和列)的本質(zhì)對于有效地遍歷和操作表格數(shù)據(jù)至關(guān)重要。</p>
</td>