Dutch PHP Conference 2025 - Call For Papers

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, якого повертає функція mysqli_stmt_init().

Значення, що повертаються

Не повертає значень.

Прогляньте також

add a note

User Contributed Notes

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