这篇文章主要讲了php如何清除html标签(除空格和换行),有一定的的参考价值,感兴趣的朋友可以看看,希望对你有所帮助!
方法一,strip_tags()剥去字符串中的 HTML 标签:
<?phpecho strip_tags("Hello <b>world!</b>");//运行结果:Hello world!?>方法二,自定义函数去除
function cutstr_html($string, $sublen){
$string = strip_tags($string);
$string = preg_replace ('/\n/is', '', $string);
$string = preg_replace ('/ | /is', '', $string);
$string = preg_replace ('/ /is', '', $string);
preg_match_all("/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/", $string, $t_string);
if(count($t_string[0]) - 0 > $sublen)
$string = join('', array_slice($t_string[0], 0, $sublen))."…";
else
$string = join('', array_slice($t_string[0], 0, $sublen));
return $string;
}【相关教程推荐
立即学习“PHP免费学习笔记(深入)”;
2. php从入门到精通
3. bootstrap教程
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号