标签:round 数据表 项目 tle creat bsp auto 调用 rem
记录几个要点:
/** * htmlpurifier 过滤js脚本 // 有选择性的过滤XSS --》 说明:性能非常低-》尽量少用 */ function removeXss($data) { //引入路径 根据具体位置设置,其他不需要改动 require_once ‘../HtmlPurifier/HTMLPurifier.auto.php‘; $_clean_xss_config = HTMLPurifier_Config::createDefault(); $_clean_xss_config->set(‘Core.Encoding‘, ‘UTF-8‘); // 设置保留的标签 $_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]‘); $_clean_xss_config->set(‘CSS.AllowedProperties‘, ‘font,font-size,font-weight,font-style,font-family,text-decoration,padding-left,color,background-color,text-align‘); $_clean_xss_config->set(‘HTML.TargetBlank‘, TRUE); $_clean_xss_obj = new HTMLPurifier($_clean_xss_config); return $_clean_xss_obj->purify($data); }
//图片配置 ‘image‘ => [ ‘maxSize‘ => 1024*1024, ‘exts‘ => array(‘jpg‘, ‘jpeg‘, ‘png‘, ‘gif‘), ‘rootPath‘ => ‘../public/uploads/‘, //上传图片保存的路径,PHP使用的路径,它是硬盘上的路径,他的根目录是D: ‘viewPath‘ => ‘/public/uploads‘, //显示图片时的路径,浏览器使用的路径,根目录是网站的根目录 ], //在配置文件中写上这段代码,类似这种
标签:round 数据表 项目 tle creat bsp auto 调用 rem
原文地址:https://www.cnblogs.com/bneglect/p/11106234.html