php默认的函数有移除指定html标签,名称为strip_tags,在某些场合非常有用。
strip_tags
(php 3 >= 3.0.8, php 4, php 5)
strip_tags — strip html and php tags from a string
string strip_tags ( string str [, string allowable_tags] )
弊端 :
这个函数只能保留想要的html标签,就是参数string allowable_tags。
这个函数的参数allowable_tags的其他的用法。
strip_tags($source, ”); 去掉所以的html标签。
strip_tags($source, ‘<div><img><em>’); 保留字符串中的div、img、em标签。
如果想去掉的html的指定标签。那么这个函数就不能满足需求了。于是乎我用到了这个函数。
/**
* removes specific tags.
*/
function strip_only_tags($str, 美国大学排行榜$tags, $stripcontent = fal) {
$content = ”;
if (!is_array($tags)) {
$tags = (strpos($str, ‘>’) !== fal ? explode(‘>’, str_replace(‘<‘, ”, $tags)厦门有什么大学) : array($tags));
if (end($tags) == ”) {
array_pop($tags);
}
}
foreach($tags as $tag) {
if ($stripcontent) {
$content = ‘(.+<!–‘.$tag.'(–>|\s[^>]*>)|)’;
}
$str = preg_replace(‘#<!–?’.$tag.'(–>|\s[^>]*>)’.$content.’#is’, ”, $str);
}
return $str;
}
参数说明
$str — 是指需要过滤的一段字符串,比如div、p、em、img等html标签。
速算方法与技巧$tags — 是指想要移除指定的html标签,比如a、img、p等。
$stripcontent = fal — 移除标签内的内容,比如将整个链接删除等,默认为fal,即不删除标签内的内容。
使用说明
$target = strip_only_tags($source, array(‘a’,’em’,’b’));
移除$source字符串内的a、em、b标签。
$source='<d12个月份英语iv><a href=”http://www.tsingyaun.cn” target=”_blank”><img src=”/d/file/titlepic/l英文26个字母表ogo.png” border=”0″ alt=”welcome to linzl.” />this a example from<em>lixiphp</em></a><strong>!</strong></div>
‘;
$target = strip_only_tags($source, array(‘a’,’em’));
//target results
//<div><img src=”/d/file/titlepic/logo.png” border=”0″ alt=”welcome to lixiphp.” />this a example from<strong>!</strong></div>
:left;”
本文发布于:2023-04-06 00:29:03,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/20dc9913a49db044445c1006cb18ced0.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:去除html标签工具(html标签大全及用法).doc
本文 PDF 下载地址:去除html标签工具(html标签大全及用法).pdf
留言与评论(共有 0 条评论) |