PHP에서 mysqli_num_rows()가 0을 반환하는 이유
MySQLi에서 먼저 결과를 가져오지 않고 쿼리를 실행하면 행 수가 잘못될 수 있습니다. mysqli_num_rows()에서 이 문제가 발생하면 다음을 고려하십시오.
코드 샘플 및 설명
아래 코드 조각을 고려하십시오.
$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; // Error! $stmt->bind_result($child_id, $child_title, $child_visible, $child_parent); while ($stmt->fetch()) { //... } echo($num_of_rows);
이 코드에서 mysqli_num_rows()는 결과가 반환되지 않았기 때문에 항상 0을 반환합니다. 아직 가져오지 않았습니다.
해결책: mysqli_stmt::store_result()를 사용하세요.
mysqli_num_rows()를 호출하기 전에 mysqli_stmt::store_result()를 호출하여 쿼리 결과가 버퍼에 생성됩니다. 이 프로세스를 사용하면 rowCount 계산이 가능합니다.
$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(); // Fetches results into a memory buffer $num_of_rows = $stmt->num_rows; $stmt->bind_result($child_id, $child_title, $child_visible, $child_parent); while ($stmt->fetch()) { //... } echo($num_of_rows);
mysqli_num_rows()에 대한 설명서를 확인하는 것을 잊지 마세요. 이러한 세부 정보는 일반적으로 설명 섹션에 언급되어 있습니다.
위 내용은 `mysqli_num_rows()`가 `mysqli_stmt::execute()` 후에 0을 반환하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!