如何在PHP中使用黑名单去除HTML标记?

时间:2011-02-14 20:37:33

标签: php parsing html-parsing strip-tags

PHP strip_tags使用白名单跳过一些你不想要的标签。有人知道一些实现,但使用黑名单而不是白名单?

2 个答案:

答案 0 :(得分:2)

一个简单的复合正则表达式搜索可以工作(如果这仍然是你以前的问题):

$html =
preg_replace("#</?(font|strike|marquee|blink|del)[^>]*>#i", "", $html);

答案 1 :(得分:1)

试试LWC在php.net上发布的这个功能 - http://www.php.net/manual/en/function.strip-tags.php#96483

<?php
function strip_only($str, $tags, $stripContent = false) {
    $content = '';
    if(!is_array($tags)) {
        $tags = (strpos($str, '>') !== false ? explode('>', str_replace('<', '', $tags)) : array($tags));
        if(end($tags) == '') array_pop($tags);
    }
    foreach($tags as $tag) {
        if ($stripContent)
             $content = '(.+</'.$tag.'[^>]*>|)';
         $str = preg_replace('#</?'.$tag.'[^>]*>'.$content.'#is', '', $str);
    }
    return $str;
}

$str = '<font color="red">red</font> text';
$tags = 'font';
$a = strip_only($str, $tags); // red text
$b = strip_only($str, $tags, true); // text
?>