您可以使用此功能來關閉所有打開的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
));
希望這有助於
我會試試這種方式看起來很安全:) @Sabari – deerox 2013-03-20 17:34:00
功能似乎工作正常:)非常感謝你 – deerox 2013-03-20 17:42:29
@deerox酷。讓我知道如果你面臨任何問題 – Sabari 2013-03-20 17:43:19