最新的Web開發教程
 

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參考