用CI框架時
解決 CodeIgniter 框架應用中
function _clean_input_keys($str)
{
if ( ! preg_match("/^[a
{
exit(
}
// Clean UTF
if (UTF
{
$str = $this
}
return $str;
}
改為
function _clean_input_keys($str)
{
$config = &get_config(
if ( ! preg_match("/^["
{
exit(
}
// Clean UTF
if (UTF
{
$str = $this
}
return $str;
}
From:http://tw.wingwit.com/Article/program/PHP/201311/20976.html