PHP mysqli_free_result() 函數(shù)
PHP mysqli_free_result() 函數(shù)
從結(jié)果集中取得行,然后釋放結(jié)果內(nèi)存:
mysqli_fetch_array()
<?php
// 假定數(shù)據(jù)庫(kù)用戶名:root,密碼:123456,數(shù)據(jù)庫(kù):RUNOOB
$con=mysqli_connect("localhost","root","123456","RUNOOB");
if (mysqli_connect_errno($con))
{
echo "連接 MySQL 失敗: " . mysqli_connect_error();
}
$sql="SELECT name,url FROM websites ORDER BY alexa";
if ($result=mysqli_query($con,$sql))
{
// 一行行獲取
while ($row=mysqli_fetch_row($result))
{
printf ("%s : %s",$row[0],$row[1]);
echo "<br>";
}
// 釋放結(jié)果集
mysqli_free_result($result);
}
mysqli_close($con);
?>
定義和用法
mysqli_free_result() 函數(shù)釋放結(jié)果內(nèi)存。
語(yǔ)法
mysqli_free_result(result);
參數(shù) | 描述 |
---|---|
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識(shí)符。 |
技術(shù)細(xì)節(jié)
返回值: | 沒有返回值。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 類型比較
- PHP Switch 語(yǔ)句
- PHP While 循環(huán)
- PHP 命名空間 namespace
- PHP array() 函數(shù)
- PHP array_chunk() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP compact() 函數(shù)
- PHP count() 函數(shù)
- PHP each() 函數(shù)
- PHP key() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Filesystem 函數(shù)