首頁  >  文章  >  後端開發  >  php 批量替换html标签的实例代码_php技巧

php 批量替换html标签的实例代码_php技巧

WBOY
WBOY原創
2016-05-17 08:52:381055瀏覽

1.把html元素全部去掉,或者保留某几个html标签

复制代码 代码如下:

$text = '

Test paragraph.

Other text';
echo strip_tags($text);
echo "/n";

// Allow

and
echo strip_tags($text, '

');
?>


结果为(去掉了注释):

Test paragraph. Other text

Test paragraph.

Other text
2.相反,只去掉某一个html标签
复制代码 代码如下:

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

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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn