mysqli_stmt::num_rows가 항상 0을 반환하는 이유는 무엇입니까?
mysqli_stmt를 사용하여 MySQL 쿼리에서 반환된 행 수를 검색하려고 할 때 ::num_rows, 실제 결과가 있음에도 불구하고 사용자는 지속적으로 0을 반환할 수 있습니다. 이 문제를 해결하려면 num_rows 이전에 mysqli_stmt::store_result() 함수를 호출하는 것이 중요합니다.
다음 코드는 올바른 사용법을 보여줍니다.
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(); $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에 대한 MySQL 문서, "[...] 결과 집합의 행 수는 다음을 호출하여 찾을 수 있습니다. num_rows 메소드를 실행해야 합니다. store_result를 호출한 후에 수행해야 합니다." mysqli_stmt::store_result() 호출을 포함하면 결과 세트가 클라이언트에 저장되므로 행 수를 정확하게 결정할 수 있습니다.
위 내용은 `mysqli_stmt::num_rows`가 항상 0을 반환하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!