时间:2021-07-01 10:21:17 帮助过:11人阅读
在php的官方文档中对strip_tags的表述如下;
strip_tags ? 从字符串中去除 HTML 和 PHP 标记
注意文档下方的warning:
由于 strip_tags() 无法实际验证 HTML,不完整或者破损标签将导致更多的数据被删除。
这句话是什么意思呢?
通过下面的几个案例来向大家介绍
sample1:
$testStr1 = "hello world!";echo strip_tags($testStr1);
输出:
hello world!
sample2:
$testStr1 = "hello world!";echo strip_tags($testStr1);输出:
hello world!
$testStr2 = "";echo strip_tags($testStr2);
输出空字符串
sample4:
$testStr3 = "hello world1hello world3";echo strip_tags($testStr3);
hello world1
版权声明:本文为博主原创文章,未经博主允许不得转载。