我已将config.php
配置为:
$config['global_xss_filtering'] = TRUE;
但是我需要为特定的post
参数禁用xss_clean。无论如何都要为此全局设置添加例外。这也将减少我在所有方法中提供$data = $this->security->xss_clean($data);
的空间和时间,除了我不需要的方法。
答案 0 :(得分:3)
请使用
$this->input->post('name',false);
第二个参数接受是否执行xss_clean