PHP 8.3.4 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

Description

Object-oriented style

public mysqli_stmt::free_result(): void

Procedural style

mysqli_stmt_free_result(mysqli_stmt $statement): void

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

Parameters

statement

Procedural style only: A mysqli_stmt object returned by mysqli_stmt_init().

Return Values

No value is returned.

See Also

add a note

User Contributed Notes

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