在 CI用户指南中,它说“以下是所有可用准备功能的列表:”
xss_clean =通过 XSS 过滤功能运行数据.....
我的代码中的注释有我的问题。请阅读。
注意:对全局启用 xss 不感兴趣!!!
提前致谢
$this->form_validation->set_rules('select_language', 'Language', 'trim|required|xss_clean');
//Has this been cleaned above while validating and ready to be used or ...
$language = $this->input->post('text_fullname');
//... do I have to add true to run the data through the XSS filtering again myslef?
$language = $this->input->post('text_fullname', true);