2

PHPstrip_tags使用白名单来跳过一些你不想被删除的标签。任何人都知道一些实现,但使用黑名单而不是白名单?

4

2 回答 2

3

一个简单的复合正则表达式搜索将起作用(如果这仍然与您之前的问题有关):

$html =
preg_replace("#</?(font|strike|marquee|blink|del)[^>]*>#i", "", $html);
于 2011-02-14T20:55:06.233 回答
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
?> 
于 2011-02-14T20:42:17.907 回答