将htmlpurifier的library类包放在网站根目录,然后调用下面的函数即可
<?php function clearXSS($string){ require_once './htmlpurifier/HTMLPurifier.auto.php'; // 生成配置对象 $_clean_xss_config = HTMLPurifier_Config::createDefault(); // 以下就是配置: $_clean_xss_config->set('Core.Encoding', 'UTF-8'); // 设置允许使用的HTML标签 $_clean_xss_config->set('HTML.Allowed','div,b,strong,i,em,a[href|title],ul,ol,li,p[style],br,span[style],img[width|height|alt|src]'); // 设置允许出现的CSS样式属性 $_clean_xss_config->set('CSS.AllowedProperties', 'font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align'); // 设置a标签上是否允许使用target="_blank" $_clean_xss_config->set('HTML.TargetBlank', TRUE); // 使用配置生成过滤用的对象 $_clean_xss_obj = new HTMLPurifier($_clean_xss_config); // 过滤字符串 return $_clean_xss_obj->purify($string); }