Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17140 программистов и 1838 роботов. Сейчас ищут 1510 программистов ...
DB_result::free()
Вернуться к: DB
DB_result::free()
DB_result::free() – Releases a result set
Synopsis
boolean free ( )
Deletes the result set and frees the memory occupied by the result set. Does not delete the DB_result object itself.
Return value
boolean - Returns TRUE on success, FALSE on failure.
Example
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();
?>
Note
This function can not be called statically.
Вернуться к: DB