可能重复:
php:如何在数组中添加奇数/偶数循环
我正在使用以下代码在 php 中生成一个表。
<?PHP
while ($row = $mydata->fetch())
{
$tests[] = array(
'a' => $row['a'],
'b' => $row['b']
)
;
}
?>
然后输出代码
<table>
<tbody>
<tr><th>#</th><th>a</th><th>b</th></tr>
<?php foreach ($tests as $test): ?>
<tr class="">
<td></td>
<td><?php htmlout($test['a']); ?></td>
<td><?php htmlout($test['b']); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
哪个输出
<table>
<tbody>
<tr><th>#</th><th>a</th><th>b</th></tr>
<tr class="">
<td></td><td>a content</td><td>b content</td>
</tr>
<tr class="">
<td></td><td>a content</td><td>b content</td>
</tr>
</tbody>
</table>
htmlout 是下面的自定义函数。
<?php
function html($text)
{
return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
}
function htmlout($text)
{
echo html($text);
}
?>
这一切都很好,但我无法在这里解决两件事。
- 我希望我的行在
<tr class="odd">
备用<tr class="even">
行上生成 - 我希望计数中的第一个
<td></td>
显示<tr>
数据的行号,例如第二个<td>1</td>
中的第一个<tr class=""> <td>2</td>
等。
我看过很多这样的例子
$count = 1;
while ($count <= 10)
{
echo "$count ";
++$count;
}
但是无法弄清楚如何将其实施到我的示例中,或者我应该使用另一种方法。我知道我可以在 jQuery 和一些使用 css3 的浏览器中做表格行,但在这种情况下更喜欢 php 解决方案。