共计 410 个字符,预计需要花费 2 分钟才能阅读完成。
strip_tags()函数用于过滤字符串中的 HTML 和 PHP 标签。
语法:
strip_tags(string $str, string $allowable_tags)
参数说明:
- $str:要过滤的字符串。
- $allowable_tags(可选):允许保留的标签。不指定时会过滤所有标签。
返回值:
返回过滤后的字符串。
示例:
$str = "Hello, world!
";
echo strip_tags($str); // 输出:Hello, world!
$str = "Hello, world!
";
echo strip_tags($str, ""); // 输出:Hello, world!
在第一个示例中,strip_tags()函数会过滤掉字符串中的所有 HTML 和 PHP 标签,只保留纯文本部分。
在第二个示例中,指定了第二个参数为 ”“,strip_tags()函数会保留 标签,其他标签都会被过滤掉。输出结果为包含 标签的字符串。
丸趣 TV 网 – 提供最优质的资源集合!
正文完