pg_free_result
(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
pg_free_result — 釋放查詢結果佔用的記憶體
說明
pg_free_result(resource
$result
): bool
pg_free_result() 僅在當你擔心指令碼執行時佔用了過多記憶體時呼叫。指令碼執行完畢后所有的查詢結果佔用的記憶體都會被自動釋放。不過如果你確認在指令碼中不會再用到查詢結果了,你可以用 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
參見
- pg_query() - 執行查詢
- pg_query_params() - Submits a command to the server and waits for the result, with the ability to pass parameters separately from the SQL command text
- pg_execute() - Sends a request to execute a prepared statement with given parameters, and waits for the result