(PHP 4, PHP 5)
mysql_free_result — 釋放結果內存
$result
): bool
mysql_free_result() 將釋放所有與結果標識符
result
所關聯的內存。
mysql_free_result() 僅需要在考慮到返回很大的結果集時會占用多少內存時調用。在腳本結束后所有關聯的內存都會被自動釋放。
成功時返回 true
, 或者在失敗時返回 false
。
為向下兼容仍然可以使用 mysql_freeresult(),但反對這樣做。
成功時返回 true
, 或者在失敗時返回 false
。
If a non-resource is used for the result
, an
error of level E_WARNING will be emitted. It's worth noting that
mysql_query() only returns a resource
for SELECT, SHOW, EXPLAIN, and DESCRIBE queries.
示例 #1 A mysql_free_result() example
<?php
$result = mysql_query("SELECT id,email FROM people WHERE id = '42'");
if (!$result) {
echo 'Could not run query: ' . mysql_error();
exit;
}
/* Use the result, assuming we're done with it afterwards */
$row = mysql_fetch_assoc($result);
/* Now we free up the result and continue on with our script */
mysql_free_result($result);
echo $row['id'];
echo $row['email'];
?>
注意:
為了向下兼容,可以使用下列已廢棄的別名: mysql_freeresult()