我很少有 if else 语句只返回真或假,而且每条语句都无法正常工作。我尝试了很多方法,但不知道问题所在。如果有人解决这个问题,那将非常有帮助。
这是我的模型代码
function exists($email){
$this->db->where('email',$email);
$query=$this->db->get('member_info');
echo "model is called"; // after execution this text is shown but not the others
if ($query->num_rows == 1) {
return true;
echo "i got one";
}else{
return false;
echo "i got nothing";
}
}
这是我的控制器
function is_exists($email){
echo "this is loaded"; //this line works properly
if($this->validation_model->exists($email)){
return false;
echo "true"; //this doesn't
}else{
return true;
echo "false"; // this doesn't
}
}