色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

php 批量替換html標(biāo)簽的實(shí)例代碼

1.把html元素全部去掉,或者保留某幾個(gè)html標(biāo)簽
復(fù)制代碼 代碼如下:
<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);
echo "/n";

// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
?>

結(jié)果為(去掉了注釋):

<blockquote>Test paragraph. Other text
<p>Test paragraph.</p> <a href="#fragment">Other text</a></blockquote>2.相反,只去掉某一個(gè)html標(biāo)簽
復(fù)制代碼 代碼如下:
<?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
?>

php技術(shù)php 批量替換html標(biāo)簽的實(shí)例代碼,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 专栏| 陆良县| 安丘市| 永丰县| 巍山| 象山县| 肇源县| 湘西| 彭水| 通城县| 密山市| 大城县| 建湖县| 茂名市| 高碑店市| 榕江县| 广宗县| 黎川县| 精河县| 河北省| 莲花县| 宁南县| 若羌县| 龙胜| 昭通市| 肥东县| 封开县| 辛集市| 偃师市| 方山县| 毕节市| 九江县| 炉霍县| SHOW| 东莞市| 探索| 五峰| 凤阳县| 招远市| 苗栗市| 滦平县|