Class yii\helpers\HtmlPurifier
继承 | yii\helpers\HtmlPurifier » yii\helpers\BaseHtmlPurifier |
---|---|
可用版本自 | 2.0 |
源码 | https://github.com/yiichina/yii2/blob/api/framework/helpers/HtmlPurifier.php |
HtmlPurifier 提供了一种从任何不良的代码中清除 HTML 的能力。
基本用法如下:
echo HtmlPurifier::process($html);
如果你想配置它:
echo HtmlPurifier::process($html, [
'Attr.EnableID' => true,
]);
获取更多详情请参阅 HTMLPurifier documentation。