解决CI框架的Disallowed Key Characters错误提示
2024-07-26 17:53:37 220人阅读
用CI框架时,有时候会遇到这么一个问题,打开网页,只显示 Disallowed Key Characters 错误提示。有人说 url 里有非法字符。但是确定 url 是纯英文的,问题还是出来了。但清空浏览器历史记录和cookies后。 刷新就没问题了。有时候。打开不同的浏览器。有的浏览器会有问题。有的就不会。广德县能源局
解决 CodeIgniter 框架应用中,出现Disallowed Key Characters错误提示的方法。找到core文件夹下的Input文件,将下面的代码:
01 | function _clean_input_keys( $str ) |
03 | if ( ! preg_match( "/^[a-z0-9:_\/-]+$/i" , $str )) |
05 | exit ( ‘Disallowed Key Characters.‘ ); |
08 | if (UTF8_ENABLED === TRUE) |
10 | $str = $this ->uni->clean_string( $str ); |
改成这样:
01 | function _clean_input_keys( $str ) |
03 | $config = &get_config( ‘config‘ ); |
04 | if ( ! preg_match( "/^[" . $config [ ‘permitted_uri_chars‘ ]. "]+$/i" , rawurlencode( $str ))) |
06 | exit ( ‘Disallowed Key Characters.‘ ); |
10 | if (UTF8_ENABLED === TRUE) |
12 | $str = $this ->uni->clean_string( $str ); |
或者改成:
01 | function _clean_input_keys( $str ) |
03 | if (preg_match( "/^,_[a-z0-9:_\/-]+$/" , $str )){ |
04 | $str = preg_replace( "/,_/" , "" , $str ); |
07 | if ( ! preg_match( "/^[a-z0-9:_\/-]+$/i" , $str )) |
09 | exit ( ‘Disallowed Key Characters.‘ . $str ); |
大概就这样~留个记录。
解决CI框架的Disallowed Key Characters错误提示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉:
投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。