我在這個問題上有困難,我有2列與名稱的URL和狀態,我必須發佈數據到這個HTML表中的循環,我面臨的問題是列標題不斷再一次循環本身,但我想它只有一次......這是我的代碼在循環中顯示html文本只有一次php
<?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>";
}
}
?>
任何幫助將不勝感激:)
此代碼本身不會導致循環;或者事實上,運行。你錯過了一個末端'}' – PenguinCoder
循環代碼在哪裏? – Hope4You
我還沒有發佈所有的代碼......我剛剛發佈了html所在的部分......我是否需要發佈包括最終循環在內的所有代碼? –