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

Descrição

Estilo orientado à objeto

public mysqli_stmt::next_result ( ) : bool

Estilo procedural:

mysqli_stmt_next_result ( mysqli_stmt $statement ) : bool

Reads the next result from a multiple query.

Parâmetros

stmt

Somente no estilo procedural: Um recurso statement retornado por mysqli_stmt_init().

Valor Retornado

Retorna true em caso de sucesso ou false em caso de falha.

Erros

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().

Somente Driver Nativo MySQL

Disponível apenas no mysqlnd.

Veja Também

add a note add a note

User Contributed Notes

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