|
打開ci框架的源碼不難發(fā)現(xiàn),在ci的核心input類中有這樣一個(gè)函數(shù):
復(fù)制代碼 代碼如下:
function _clean_input_keys($str)
{
if ( ! preg_match("/^[a-z0-9:_//-]+$/i", $str))
{
exit('Disallowed Key Characters.');
}
// Clean UTF-8 if supported
if (UTF8_ENABLED === TRUE)
{
$str = $this->uni->clean_string($str);
}
return $str;
}
這是進(jìn)行過(guò)濾的,所以拋出錯(cuò)誤
我們?cè)赼pplication的core中對(duì)這個(gè)方法進(jìn)行重寫即可
命名一個(gè)為MY_Input.php(前綴MY_可以在config.php中自定義),然后將下面代碼加入即可
復(fù)制代碼 代碼如下:
class AI_Input extends CI_Input {
//構(gòu)造函數(shù)
function __construct(){
parent::__construct();
}
function _clean_input_keys($str)
{
if(preg_match("/^,_[a-z0-9:_//-]+$/",$str)){
$str = preg_replace("/,_/","",$str);
}
if ( ! preg_match("/^[a-z0-9:_//-]+$/i", $str))
{
exit('Disallowed Key Characters.'.$str);
}
return $str;
}
}
php技術(shù):CodeIgniter框架提示Disallowed Key Characters的解決辦法,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。