ci框架的Input.php类的路径于’system/core/Input.php’。至少,对form过来的数据接收很好用。
比如,获取表单post过来的数据:$this -> input -> post(‘account’);

当然,有input,也有output。input的方法和属性还有更多。先列着。

$this->input->get() //获取$_GET

$this->input->post() //获取$_POST

$this->input->get_post() //获取$_GET或$_POST

$this->input->cookie() //获取$_COOKIE

$this->input->set_cookie() //设置COOKIE

$this->input->server() //获取$_SERVER

$this->input->ip_address() //获取ip地址

$this->input->valid_ip($ip) //验证ip地址

$this->input->user_agent() //获取浏览器user_agent

$this->input->request_headers() //获取request_headers

$this->input->get_request_header(); //获取request_headers中的一项信息

$this->input->is_ajax_request() //判断是否是ajax请求