0

如果我有一个 if 语句当前$_POST使用 $this->input->post(); 最好的方法是什么?

例子:

if($_POST)
{
  Do This

}
4

1 回答 1

2

根据文档,

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

如果它不存在则返回值或 false,所以你应该使用这个:

if ($this->input->post('value'))
{
    // 'value' can be safely used now, because we know it's there
}
于 2013-06-15T21:51:48.637 回答