当回显而不是仅删除所有其他元标记时,它似乎在重复描述,例如:
BBC 有 13 个不同的元标签,当我只在脚本中回显描述时,它会重复 13 次。
<?php
//make the array
$TAarray = explode("\n", strip_tags($_POST['TAData']));
foreach ($TAarray as $key => &$line) {
$line = trim($line);
// get the meta data for each url
$tags = get_meta_tags($line);
echo '<tr>';
foreach ($tags as $meta)
{
echo (isset($tags['description']))?"<br><br />\nDescription($line):<br>\n".$tags['description']:"<br>\nDescription($line):<br>\nNo Meta Description.";
/*echo '<td>' . $meta . '</td>';*/
}
echo '</tr>';
}
?>
这是任何人都想看到它工作的 URL:http: //php-playground.co.cc/testdir/metaex.php
附言
我知道复选框不起作用,它们仅用于布局