Ok, the way to get results similar to CI within EE for all elements of a POST, while still leveraging the security features of EE is the following:foreach($_POST as $key => $value){ $data[$key] = $this->EE->input->post($key);}由于您可以按名称访问POST变量,因此可以在$ _POST中循环访问它们,然后显式调用每个变量将产生所需的结果.Since you can access POST vars by name, looping through them in $_POST, then explicitly calling each will yield the desired result. 这篇关于是否可以像在CodeIgniter中一样在ExpressionEngine中获取所有post变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!