(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
pg_free_result — 釋放查詢結果占用的內存
$result
): bool
pg_free_result() 僅在當你擔心腳本執(zhí)行時占用了過多內存時調用。腳本執(zhí)行完畢后所有的查詢結果占用的內存都會被自動釋放。不過如果你確認在腳本中不會再用到查詢結果了,你可以用 result
作為參數調用 pg_free_result() 來釋放有關的內存。成功時返回 true
, 或者在失敗時返回 false
。
注意:
本函數以前的名字為
pg_freeresult()
。
參見 pg_query()。
result
PostgreSQL query result resource, returned by pg_query(), pg_query_params() or pg_execute() (among others).
成功時返回 true
, 或者在失敗時返回 false
。
示例 #1 pg_free_result() example
<?php
$db = pg_connect("dbname=users user=me") || die();
$res = pg_query($db, "SELECT 1 UNION ALL SELECT 2");
$val = pg_fetch_result($res, 1, 0);
echo "First field in the second row is: ", $val, "\n";
pg_free_result($res);
?>
以上例程會輸出:
First field in the second row is: 2