我在这件事上遇到了困难,我有 2 列名称为 URL 和状态,我必须循环将数据发布到这个 html 表中,我面临的问题是列标题不断循环,但我只想要一次......这是我的代码
<?php
if (preg_match("/found/", $html))
{
echo '<table id="table-2">
<thead>
<tr>
<th>URL</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>'.$get_sites_link.'</td>
<td>Keyword Found</td>
</tr></tbody>
</table>';
$vul_url[] = $get_sites_link1;
$links_duplicate_removed = array_unique($vul_url);
file_put_contents($save_file, implode(PHP_EOL, $links_duplicate_removed));
}
else
{
echo '<table id="table-2">
<thead>
<tr>
<th>URL</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>'.$get_sites_link1.'</td>
<td>Keyword Not Found</td>
</tr></tbody>
</table>'."</b>"."</br>";
}
}
?>
任何帮助将不胜感激 :)