mysqli_stmt::next_result

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

mysqli_stmt::next_result -- mysqli_stmt_next_result — 다중 쿼리에서 다음 결과를 읽습니다.


설명

객체 지향 스타일

public mysqli_stmt::next_result(): bool

절차적 스타일

mysqli_stmt_next_result(mysqli_stmt $statement): bool

다중 쿼리에서 다음 결과를 읽습니다.

메모: PHP 8.1.0 이전에는 mysqlnd에서만 사용 가능했습니다.


매개변수

statement
절차적 스타일 전용: mysqli_stmt_init()에 의해 반환된 mysqli_stmt 객체.

반환 값

성공하면 true를, 실패하면 false를 반환합니다.


변경 로그

버전 설명
8.1.0 이제 libmysqlclient에 연결할 때도 사용할 수 있습니다.

기타