如果我的if语句目前使用$_POST
,那么使用$ this-> input-> post();?
示例:
if($_POST)
{
Do This
}
答案 0 :(得分:2)
根据文件,
$this->input->post('value')
返回值,如果不存在则返回false,因此您应该使用:
if ($this->input->post('value'))
{
// 'value' can be safely used now, because we know it's there
}