所以,在我的网站上,我有用户生成的内容。我有一个所见即所得的编辑器,但有一个视图源部分。我有一些批准的标签。
但它发生在我身上,如果用户只是在没有关闭的情况下放入该怎么办?然后是页面其余部分。 我怎么能解决这个问题。
答案 0 :(得分:0)
我通常想告诉你看看wordpress是怎么做的,直到我测试它并发现wordpress不关心^^我可以通过打开div而不是将它们弄清楚我的页面容易打破
无论如何我发现了这个。
/** * close all open xhtml tags at the end of the string
* * @param string $html
* @return string
* @author Milian <mail@mili.de>
*/function closetags($html) {
#put all opened tags into an array
preg_match_all('#<([a-z]+)(?: .*)?(?<![/|/ ])>#iU', $html, $result);
$openedtags = $result[1]; #put all closed tags into an array
preg_match_all('#</([a-z]+)>#iU', $html, $result);
$closedtags = $result[1];
$len_opened = count($openedtags);
# all tags are closed
if (count($closedtags) == $len_opened) {
return $html;
}
$openedtags = array_reverse($openedtags);
# close tags
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;}
这应该是你要找的。 p>
答案 1 :(得分:0)
这是一个非常复杂的主题,并没有简单的捷径。在开始重新发明轮子之前,请使用专为完成此操作而设计的库。据推测,HTML Purifier是为数不多的(如果不是唯一的)图书馆之一。