CodeIgniter - 在请求标头中打印自定义值

时间:2016-01-06 11:42:41

标签: php codeigniter codeigniter-2 codeigniter-3

如何使用CodeIgniter打印在收到的请求标题中设置的值?

我尝试了f <- function(x) x^2 - x + 0.2 x <- seq(0.2, 1, by=0.1) range(f(x)) # [1] -0.05 0.20 # approximate numerical answer 这对我没有帮助。我希望使用CI的方式不同。

2 个答案:

答案 0 :(得分:8)

只需使用,

$this->input->request_headers();

答案 1 :(得分:2)

如果您要从表单提交中发送值,

$_REQUEST will help you

or

    $this->input->post();
    $this->input->get();