假设我有一个来自用户 ( $input
) 的字符串。我可以去剥离标签,只允许允许的标签进入。我可以使用htmlspecialchars()
. 我什至可以用文本替换所有我不想要的标签。
function html($input) {
$input = '<bl>'.htmlspecialchars($input).'</bl>'; // bl is a custom tag that I style (stands for block)
global $open;
$open = []; //Array of open tags
for ($i = 0; $i < strlen($input); $i++) {
if (!in_array('code', $open) && !in_array('codebl', $open)) { //If we are parsing
$input = preg_replace_callback('#^(.{'.$i.'})<(em|i|del|sub|sup|sml|code|kbd|pre|codebl|quote|bl|sbl)>\s*#s', function($match) {
global $open; //...then add new tags to the array
array_push($open,$match[2]);
return $match[1].'<'.$match[2].'>'; //And replace them
}, $input);
$input = preg_replace_callback('#^(.{'.$i.'})(https?):\/\/([^\s"\(\)<>]+)#', function($m) {
return $m[1].'<a href="'.$m[2].'://'.$m[3].'" target="_blank">'.$m[3].'</a>';
}, $input, -1, $num); //Simple linking
$i += $num * 9;
$input = preg_replace_callback('#^(.{'.$i.'})\n\n#', function($m) {
return $m[1].'</bl><bl>';
}, $input); // More of this bl element
}
if (end($open)) { //Close tags
$input = preg_replace_callback('#^(.{'.$i.'})</('.end($open).')>#s', function($match) {
global $open;
array_pop($open);
return trim($match[1]).'</'.$match[2].'>';
}, $input);
}
}
while ($open) { //Handle unclosed tags
$input .= '</'.end($open).'>';
array_pop($open);
}
return $input;
}
问题是,在那之后,就没有办法按字面意思写了<i&lgt;</i>
,因为它会被自动解析为<i></i>
(如果你写的话<i></i>
),或者&lt;i&gt;&lt;/i&gt;
(如果你写的话<i></i>
)。我希望用户能够输入<
(或任何其他 HTML 实体)并<
返回。如果我只是将它直接发送到未解析的浏览器,它(显然)很容易受到黑客试图(并且我让)放置在我的网站上的任何巫术的攻击。那么,我怎样才能让用户使用任何预定义的 HTML 标签集,同时仍然让他们使用 html 实体?