PHP 8.1.24 Released!

mysqli_stmt::free_result

mysqli_stmt_free_result

(PHP 5, PHP 7, PHP 8)

mysqli_stmt::free_result -- mysqli_stmt_free_resultFrees stored result memory for the given statement handle

Descrição

Estilo orientado a objetos

public mysqli_stmt::free_result(): void

Estilo procedural

mysqli_stmt_free_result(mysqli_stmt $statement): void

Frees the result memory associated with the statement, which was allocated by mysqli_stmt_store_result().

Parâmetros

statement

Somente no estilo procedural: Um objeto mysqli_stmt retornado por mysqli_stmt_init().

Valor Retornado

Nenhum valor é retornado.

Veja Também

add a note

User Contributed Notes

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