>  기사  >  백엔드 개발  >  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으로 문의하세요.