MYSQLI_FREE_RESULT(3) 1 MYSQLI_FREE_RESULT(3)
mysqli_result::free - Frees the memory associated with a result
Object oriented style
SYNOPSIS
void mysqli_result::free (void )
DESCRIPTION
void mysqli_result::close (void )
void mysqli_result::free_result (void )
Procedural style
void mysqli_free_result (mysqli_result $result)
Frees the memory associated with the result.
Note
You should always free your result with mysqli_free_result(3), when your result object is not needed anymore.
PARAMETERS
o $
result -Procedural style only: A result set identifier returned by mysqli_query(3), mysqli_store_result(3) or
mysqli_use_result(3).
RETURN VALUES
No value is returned.
SEE ALSO
mysqli_query(3), mysqli_stmt_store_result(3), mysqli_store_result(3), mysqli_use_result(3).
PHP Documentation Group MYSQLI_FREE_RESULT(3)