php - registros - ¿Por qué mysqli num_rows siempre devuelve 0?
mysqli_num_rows() expects parameter 1 to be mysqli_result (2)
He estado teniendo problemas para recuperar el número de filas con mysqli. Acabo de recibir 0 de vuelta cada vez, aunque definitivamente hay algunos resultados.
if($stmt = $mysqli->prepare("SELECT id, title, visible, parent_id FROM content WHERE parent_id = ? ORDER BY page_order ASC;")){
$stmt->bind_param(''s'', $data->id);
$stmt->execute();
$num_of_rows = $stmt->num_rows;
$stmt->bind_result($child_id, $child_title, $child_visible, $child_parent);
while($stmt->fetch()){
//code
}
echo($num_of_rows);
$stmt->close();
}
¿Por qué no muestra el número correcto?
Intenta configurar tus $num_of_rows
justo después de tu if (statement) - before bind_param ... A menos que eso cambie tus resultados. Difícil de decir sin más información.
MySqli_Stmt::store_result()
llamar a MySqli_Stmt::store_result()
antes de la búsqueda num_rows:
if($stmt = $mysqli->prepare("SELECT id, title, visible, parent_id FROM content WHERE parent_id = ? ORDER BY page_order ASC;")){
$stmt->bind_param(''s'', $data->id);
$stmt->execute();
$stmt->store_result(); <-- This needs to be called here!
$num_of_rows = $stmt->num_rows;
$stmt->bind_result($child_id, $child_title, $child_visible, $child_parent);
while($stmt->fetch()){
//code
}
echo($num_of_rows);
$stmt->close();
}
Ver los documentos en MySQLi_Stmt->num_rows
, lo dice cerca de la parte superior de la página (en el bloque de descripción principal) ...