这是我用来检查codeigniter中的帖子值是否为空的内容。
if($this->input->post('inputEmail')) { }
只是想知道检查它的最佳方法是什么,上面提到的方法或
$temp = $this->input->post('inputEmail');
if(!empty($temp)) { }
答案 0 :(得分:0)
使用php中的isset检查是否设置了变量。
试试这个:
if(isset($tmp))
{
//it is set
}
else
{
//not set
}