Class yii\helpers\BaseHtmlPurifier
继承 | yii\helpers\BaseHtmlPurifier |
---|---|
子类 | yii\helpers\HtmlPurifier |
可用版本自 | 2.0 |
源码 | https://github.com/yiichina/yii2/blob/api/framework/helpers/BaseHtmlPurifier.php |
BaseHtmlPurifier 为 yii\helpers\HtmlPurifier 提供了具体的实现方法。
不要使用 BaseHtmlPurifier 类。使用 yii\helpers\HtmlPurifier 类来代替。
方法详情
允许这个扩展的 HtmlPurifier 类去设置默认的配置选项。
protected static void configure($config) | ||
$config | \HTMLPurifier_Config |
通过 HTMLPurifier 来传递标记使其安全传输给最终的用户。
public static string process($content, $config = null) | ||
$content | string | 需要过滤的 HTML 内容 |
$config | array|Closure|null | 为 HtmlPurifier 提供使用的配置。
如果未指定或为
|
return | string | 需要过滤的 HTML 内容。 |
---|