Some chars encoded during POST while others are not

前端 未结 1 1014
臣服心动
臣服心动 2021-01-18 22:44

TL;DR

CodeIgniters\' Security Class directly manipulates your Globals such as $_POST and it finds file() and file () to be a

相关标签:
1条回答
  • 2021-01-18 23:36

    According to the user guide, you can get rid of this by setting

    $config['global_xss_filtering'] = FALSE;
    

    Or just remove this line.

    IMHO, it's a design failure to modify the $_POST array, but there you go.

    0 讨论(0)
提交回复
热议问题