在Codeigniter中,
$something = isset($_POST['something']) ? $_POST['something'] : NULL;
等于
$something = $this->input->post('something');
Codeigniter中是否有类似$something = $this->input->post('something','do');
的内容?
我需要的是如果没有设置发布值我需要分配另一个值而不是Null?