当前位置:Gxlcms > PHP教程 > php批量替换html标签的实例代码_PHP教程

php批量替换html标签的实例代码_PHP教程

时间:2021-07-01 10:21:17 帮助过:14人阅读

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('<', '', $tags)) : array($tags));
if(end($tags) == '') array_pop($tags);
}
foreach($tags as $tag) {
if ($stripContent)
$content = '(.+]*>|)';
$str = preg_replace('#]*>'.$content.'#is', '', $str);
}
return $str;
}

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

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/621724.htmlTechArticle1.把html元素全部去掉,或者保留某几个html标签 代码如下:

?php $text = 'pTest paragraph./p!-- Comment -- a href="#fragment"Other text/a'; echo strip_...

人气教程排行