strip_tags()函数用于从字符串中删除HTML和PHP标签。它的语法如下:
```php
string strip_tags ( string $str [, string $allowable_tags ] )
```
参数说明:
- `$str`:要过滤的字符串
- `$allowable_tags`:可选参数,允许保留的标签列表。如果指定了该参数,只有这些标签会被保留,其他标签都会被删除。
示例用法:
```php
$str = "
Hello, world!
";echo strip_tags($str); // 输出:Hello, world!
$str = "
Hello, world!
";echo strip_tags($str, ""); // 输出:Hello, world!
```
第一个示例中,`strip_tags()`函数删除了字符串中的HTML标签,只保留了纯文本内容。第二个示例中,指定了``标签作为可保留标签,所以只有``标签和其中的内容被保留,其他标签都被删除。