(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)
pg_free_result — 释放查询结果占用的内存
pg_free_result() 释放与指定 PgSql\Result 实例关联的内存和数据。
仅当脚本执行期间的内存消耗成为问题时才需要调用此函数。否则,所有结果内存将在脚本结束时自动释放。
注意:
本函数以前的名字为 pg_freeresult()。
版本 | 说明 |
---|---|
8.1.0 |
现在 result 参数接受 PgSql\Result
实例,之前接受 resource。
|
示例 #1 pg_free_result() 示例
<?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