CakeFest 2024: The Official CakePHP Conference

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

说明

面向对象风格

public mysqli_stmt::free_result(): void

过程化风格

mysqli_stmt_free_result(mysqli_stmt $statement): void

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

参数

statement

仅以过程化样式:由 mysqli_stmt_init() 返回的 mysqli_stmt 对象。

返回值

没有返回值。

参见

add a note

User Contributed Notes

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