PEAR Manual
This manual is provided as a courtesy. It is not an official source. Please check pear.php.net for updated information.
boolean free ()
boolean free
Deletes the result set and frees the memory occupied by the result set. Does not delete the DB_result object itself.
boolean - Returns TRUE on success, FALSE on failure.
Example 33-1. Using free()
<?php // Once you have a valid DB object named $db... $res =& $db->query('SELECT name, address FROM clients'); while ($row =& $res->fetchRow()) { echo $row['name'] . ', ' . $row['address'] . "\n"; } $res->free(); ?>
This function can not be called statically.