php 中清除字符串中的 html 标记
对于以下需求:
- 给定一个字符串 $str = 'ttttgg. '
- 去除字符串中以结束的字符(即去除 html 标记)
可以使用 php 提供的 strip_tags() 函数来实现:
$newStr = strip_tags($str);
strip_tags() 函数用于从字符串中移除所有 html 和 php 标记,对于需要去除 html 标记的情况非常有用。处理后的字符串 $newstr 将是:"ttttgg.",其中 html 标记已去除。
以上就是如何使用 PHP 去除字符串中的 HTML 标记?的详细内容,更多请关注其它相关文章!