> php教程 > php手册 > php如何清除html标签(除空格和换行)

php如何清除html标签(除空格和换行)

WBOY
풀어 주다: 2018-10-24 15:11:38
앞으로
1452명이 탐색했습니다.

这篇文章主要讲了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 (&#39;/\n/is&#39;, &#39;&#39;, $string);    
    $string = preg_replace (&#39;/ | /is&#39;, &#39;&#39;, $string);   
    $string = preg_replace (&#39;/ /is&#39;, &#39;&#39;, $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(&#39;&#39;, array_slice($t_string[0], 0, $sublen))."…";    
    else 
       $string = join(&#39;&#39;, array_slice($t_string[0], 0, $sublen));   
    return $string;
}
로그인 후 복사

【相关教程推荐

1. php编程从入门到精通全套视频教程 

2. php从入门到精通  

3. bootstrap教程 

관련 라벨:
원천:csdn.net
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿