mysqli prepared statement num_rows返回0,而查询返回大于0

时间:2017-08-27 04:01:27

标签: php mysql mysqli

我为实际存在的电子邮件准备了一份简单的声明:

$mysqli = new mysqli("localhost", "root", "", "test");
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

$sql = 'SELECT `email` FROM `users` WHERE `email` = ?';
$email = 'example@hotmail.com';

if ($stmt = $mysqli->prepare($sql)) {
    $stmt->bind_param('s', $email);
    $stmt->execute();

    if ($stmt->num_rows) {
        echo 'hello';
    }

    echo 'No user';
}

结果:echos No user应该回显hello

我在控制台中运行了相同的查询,并使用与上面相同的电子邮件获得了结果。

我也使用简单的mysqli查询进行了测试:

if ($result = $mysqli->query("SELECT email FROM users WHERE email = 'example@hotmail.com'")) {
    echo 'hello';

}

结果:我的期望hello

$result num_rows的{​​{1}}为1。

为什么准备好的语句num_row不大于0?

3 个答案:

答案 0 :(得分:2)

当您通过mysqli执行语句时,结果实际上不在PHP中,直到您获取它们 - 结果由数据库引擎保存。因此mysqli_stmt对象无法知道执行后立即有多少结果。

修改你的代码:

$stmt->execute();
$stmt->store_result(); // pull results into PHP memory

// now you can check $stmt->num_rows;

See the manual

这不适用于您的特定示例,但如果您的结果集很大,$stmt->store_result()将占用大量内存。在这种情况下,如果您只关心是否至少返回了一个结果,请不要存储结果;相反,只需检查结果元数据是否为空:

$stmt->execute();
$hasResult = $stmt->result_metadata ? true : false;

See the manual

答案 1 :(得分:1)

在$ stmt-> execute()之后

调用函数$ stmt-> store_result() 此链接可能会有助http://php.net/manual/en/mysqli-stmt.num-rows.php

答案 2 :(得分:1)

我认为它缺失了

$stmt->store_result();

if ($stmt->num_rows) {
    echo 'hello';
}

http://php.net/manual/en/mysqli-stmt.num-rows.php