在Codeigniter中,
$something = isset($_POST['something']) ? $_POST['something'] : NULL;
等于 $this->input->post('something')
; $something = isset($_GET['something']) ? $_GET['something'] : NULL;
等于 $this->input->get('something')
; $something = isset($_REQUEST['something']) ? $_REQUEST['something'] : NULL;
是否有相同的代码?