У меня возникли проблемы с возвратом числа строк с помощью mysqli. Я просто получаю 0 назад каждый раз, хотя есть определенные результаты.
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(); }
Почему он не показывает правильный номер?
Вам нужно вызвать MySqli_Stmt::store_result()
до поиска 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(); }
в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(); }
Смотрите документы в MySQLi_Stmt->num_rows
, он говорит, что он находится прямо в верхней части страницы (в основном блоке описания) …
Попробуйте установить $num_of_rows
сразу после вашего if (statement) – до bind_param … Если это не изменит ваши результаты. Трудно сказать без дополнительной информации.