您可以使用此功能关闭内容中所有打开的 HTML 标记:
function closeHtmlTags($html) {
preg_match_all('#<(?!meta|img|br|hr|input\b)\b([a-z]+)(?: .*)?(?<![/|/ ])>#iU', $html, $result);
$openedtags = $result[1];
preg_match_all('#</([a-z]+)>#iU', $html, $result);
$closedtags = $result[1];
$len_opened = count($openedtags);
if (count($closedtags) == $len_opened) {
return $html;
}
$openedtags = array_reverse($openedtags);
for ($i=0; $i < $len_opened; $i++) {
if (!in_array($openedtags[$i], $closedtags)) {
$html .= '</'.$openedtags[$i].'>';
} else {
unset($closedtags[array_search($openedtags[$i], $closedtags)]);
}
}
return $html;
}
只需致电:
$content = closeHtmlTags($content);
这将返回所有 HTML 标记关闭的内容。
您也可以使用 PHP 扩展php_tidy
$tidy = new Tidy();
$content = $tidy->repairString($str, array(
'output-xml' => true,
'input-xml' => true
));
希望这可以帮助