ตัวอย่าง
เรียกแถวจากผลการตั้งค่าแล้วหน่วยความจำที่เกี่ยวข้องกับผลที่ได้:
<?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 อ้างอิง