Codeigniter在if语句中替换$ _POST

时间:2013-06-15 21:42:21

标签: php codeigniter

如果我的if语句目前使用$_POST,那么使用$ this-> input-> post();?

的最佳方法是什么?

示例:

if($_POST)
{
  Do This

}

1 个答案:

答案 0 :(得分:2)

根据文件,

$this->input->post('value')

返回值,如果不存在则返回false,因此您应该使用:

if ($this->input->post('value'))
{
    // 'value' can be safely used now, because we know it's there
}