我阅读了有关Input类的文档https://codeigniter.com/userguide3/libraries/input.html
我想使用输入类更改特定参数的值,但在文档中找不到。
旧代码:
$_GET['name'] = trim($variable);
更改为:
$this->input->get('name') = trim($variable);
or
$this->input->name = trim($variable);
但它不起作用。如何使用XSS过滤更改参数值?
你已经扭转了局面。您不设置$this->input
-顾名思义,它是input
,而您得到它的
$variable = trim($this->input->get('name'));
https://codeigniter.com/userguide3/libraries/input.html
设置output
$this->output->set_output( $variable );
https://codeigniter.com/userguide3/libraries/output.html