我有一个代码来检查mysqli中已经存在的用户数据,如下所示:
$SQL = "SELECT users.email,users.handle,userprofile.mobile FROM users,userprofile
WHERE users.email =? OR users.handle =? OR userprofile.mobile=?";
if ($stmt = $mysqli->prepare($SQL)) {
$stmt->bind_param("sss", $email,$username,$mobile);
$stmt->execute();
if($stmt->num_rows){
$result = $stmt->get_result();
$row = $result->fetch_array(MYSQLI_NUM);
if($row[0] ==$email){echo 'email exist';}
if($row[1] ==$username){echo 'username exist';}
if($row[2] ==$mobile){echo 'mobile exist';}
}
else{
echo 'OK';
}
如果用户数据已存在时有效。
但如果用户数据不存在,则else
不起作用!
为什么呢?
答案 0 :(得分:5)
发生这种情况的原因是因为if语句返回true,因此它执行其中的代码。 $stmt->num_rows
可以返回true
,false
或int
,因此即使没有行受到影响,它仍会返回有效值
0是一个有效值,if语句只会在逻辑返回false时跳过该部分代码,因此将代码更改为以下内容将解决问题。
if( $stmt->num_rows > 0) {
// your code here
}
答案 1 :(得分:1)
这是因为您正在检查num_rows
,因为如果找不到匹配项,它将返回false
。如果没有条目匹配,它会返回0
,所以我建议检查num_rows是否为> 0
if($stmt->num_rows > 0){