如果要使用mysqli_stmt :: $num_rows(即,检查预准备语句中的行数),则需要在执行预准备语句之后使用$stmt-> store_result(),然后才能检查其数量行.这意味着在我们检查返回的行数之前,结果存储在内存中.
$stmt = $conn->prepare($sql);
$stmt->bind_param('ss',$log_username,$log_username);
$stmt->execute();
$stmt->store_result(); // Need to store the result into memory first
if ($stmt->num_rows) {
// ...
但是,如果你想使用mysqli_result :: $num_rows(在你从语句结果转换的MySQLi结果上),你需要在执行$result = $stmt-> get_result();之后这样做,并使用$result – > num_rows;,如下所示.
$stmt = $conn->prepare($sql);
$stmt->bind_param('ss',$log_username,$log_username);
$stmt->execute();
$result = $stmt->get_result();
if ($result->num_rows) {
while ($row = $result->fetch_assoc()) {
// ....
最后,他们应该最终做同样的事情 – 提供原始准备查询返回的一些行.
注意
请务必注意,您不能在同一语句中使用store_result()和get_result().这意味着在第一个示例中,您无法转换为mysqli-result对象(通过使用get_result(),它允许您使用标准的fetch_assoc()方法).由于store_result()将结果存储到内存中,因此get_result()无需转换,反之亦然.
这意味着如果使用store_result(),则需要通过statement-fetch,mysqli_stmt :: fetch()获取并通过mysqli_stmt :: bind_result()绑定结果.如果使用get_result(),则应检查生成的MySQLi结果对象上的行数(如第二个示例所示).
你应该为此构建你的代码,这样你只需要使用其中一个.
话虽如此,使用评论中建议的affected_rows不是正确的工具 – 根据mysqli_stmt :: $affected_rows上的手册(同样适用于常规查询,mysqli :: $affected_rows):
Returns the number of rows affected by INSERT, UPDATE, or DELETE query.
This function only works with queries which update a table. In order to get the number of rows from a SELECT query, use mysqli_stmt_num_rows() instead.