我需要在php中创建一个输出html表的数组,以便我可以获取源代码。
##id:1## ##site:1##
##id:2## ##site:2##
etc. 500 times over.
答案 0 :(得分:4)
<table>
<?
for($i = 0; $i < 500; ++$i) {
echo '<tr><td>',$i,'</td><td>',$i,'</td></tr>';
} ?>
</table>
这些天人们真的很懒惰......
答案 1 :(得分:1)
我真的不知道你需要什么,但这是我的解决方案(未经测试)
$table_array=array(
{id}=>'{text}',
{id2}=>'{text2}'
);
echo '<table>';
foreach($id=>$row in $table_array){
echo '<tr id="'.$id.'">';
echo '<td>'.$row.'</td>';
echo '</tr>';
}
echo '</table>';
你只需要使用正确的文本和id生成数组,然后它应该可以正常工作。