欢迎各位兄弟 发布技术文章
这里的技术是共享的
第一次过滤程序初始化过程中代码:ThinkPHP\Lib\Core\App.class.php 52到59行第二次过滤I方法中 使用 VAR_FILTERS配置 过滤一次 代码在\ThinkPHP\Common\common.php 68到74行这个对htmlspecialchars这样类型过滤郁闷 输出需要两个还原代码
nhmice2013年11月24日
来自 http://www.thinkphp.cn/bug/2492.html
// 全局过滤
// array_walk_recursive($input,'filter_exp');
if(C('VAR_FILTERS')) {
$_filters = explode(',',C('VAR_FILTERS'));
foreach($_filters as $_filter){
// 全局参数过滤
array_walk_recursive($input,$_filter);
}
}