update : 2015.11.03
php.shukuma.com검색:
|
pg_free_result(PHP 4 >= 4.2.0, PHP 5) pg_free_result — Free result memory 설명
bool pg_free_result
( resource
$result
)pg_free_result() frees the memory and data associated with the specified PostgreSQL query result resource. This function need only be called if memory consumption during script execution is a problem. Otherwise, all result memory will be automatically freed when the script ends.
인수
반환값
성공 시 예제
Example #1 pg_free_result() example
<?php 위 예제의 출력: First field in the second row is: 2 참고
|