최신 웹 개발 튜토리얼
 

PHP mysqli_free_result() Function

<참고 PHP MySQLi

결과 세트에서 행 가져 오기, 결과와 관련된 메모리를 :

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="SELECT Lastname,Age FROM Persons ORDER BY Lastname";

if ($result=mysqli_query($con,$sql))
  {
  // Fetch one and one row
  while ($row=mysqli_fetch_row($result))
    {
    printf ("%s (%s)\n",$row[0],$row[1]);
    }
  // Free result set
  mysqli_free_result($result);
}

mysqli_close($con);
?>

정의 및 사용

mysqli_free_result() 함수의 결과와 관련된 메모리를 해제.


통사론

mysqli_free_result( result ) ;

매개 변수 기술
result 필요합니다. 에 의해 반환 된 결과 집합 식별자 지정 mysqli_query() , mysqli_store_result() 또는 mysqli_use_result()

기술적 세부 사항

반환 값 : 없음 반환 값 없습니다
PHP 버전 : 5+

<참고 PHP MySQLi