如何在codeigniter中获取请求数据

时间:2016-12-15 11:50:28

标签: php codeigniter

我是codeigniter的新手。

我正在尝试打印所需的表单数据。

我想要一堆数据,但我无法获取它。

我在这里获取单个数据。我想要整个数据阵列。

我已尝试过以下代码。

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Ticket extends CI_Controller {

    public function insert_ticket()
    {   


    echo $title = $this->input->post("title");//getting single data
        print_r($this->input->post);exit;//This one is not working.
    }
}

谢谢。有什么建议吗?

3 个答案:

答案 0 :(得分:5)

$this->input->post这是错误的,您可以尝试按照以下方式进行操作,因为post()是一种方法而非属性

print_r($this->input->post());return;

答案 1 :(得分:2)

您在代码中错误地忽略了功能括号post()
代码应该是这样的

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

答案 2 :(得分:1)

试试这可能会对你有所帮助

 print_r($this->input->post());
 die();