mysqli_stmt::next_result

mysqli_stmt_next_result

(PHP 5 >= 5.3.0, PHP 7)

mysqli_stmt::next_result -- mysqli_stmt_next_resultReads the next result from a multiple query

설명

객체 기반 형식 (method):

public bool mysqli_stmt::next_result ( void )

절차식 형식:

bool mysqli_stmt_next_result ( mysql_stmt $stmt )

Reads the next result from a multiple query.

인수

stmt

순차 형식 전용: mysqli_stmt_init()가 반환한 statement 식별자.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

오류/예외

Emits an E_STRICT level error if a result set does not exist, and suggests using mysqli_stmt::more_results() in these cases, before calling mysqli_stmt::next_result().

MySQL Native Driver Only

mysqlnd에서만 사용할 수 있습니다.

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top