>백엔드 개발 >PHP 튜토리얼 >`mysqli_num_rows()`가 `mysqli_stmt::execute()` 후에 0을 반환하는 이유는 무엇입니까?

`mysqli_num_rows()`가 `mysqli_stmt::execute()` 후에 0을 반환하는 이유는 무엇입니까?

Susan Sarandon
Susan Sarandon원래의
2024-12-05 10:53:11360검색

Why Does `mysqli_num_rows()` Return 0 After `mysqli_stmt::execute()`?

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.