|
mysql_free_resultFree result memory Warning
This extension was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide. Alternatives to this function include:
Description
bool mysql_free_result(resource
$result )
mysql_free_result will free all memory
associated with the result identifier mysql_free_result only needs to be called if you are concerned about how much memory is being used for queries that return large result sets. All associated result memory is automatically freed at the end of the script's execution. Parameters
Return Values
Returns
If a non-resource is used for the Examples
Example #1 A mysql_free_result example
Notes
See Also
|